/* ============================================================
   TRINITYAI — Multi-Page Website
   Design Language: normalisboring.es editorial system
   Background: #F2EDE6 (warm beige/cream)
   Typography: Cormorant Garamond display + Inter body
   Layout: editorial asymmetry, type bleeds off screen
   ============================================================ */

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

:root {
  --bg:      #F2EDE6;
  --bg-blue: #C8D8E8;
  --bg-dark: #0D0D0D;
  --bg-coral:#D9605A;
  --text:    #111111;
  --text-mid:#555555;
  --accent:  #C8A46D;
  --white:   #FFFFFF;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: auto; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Page transition overlay ──────────────────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9000;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* ── Custom cursor ────────────────────────────────────────── */
.cursor-dot {
  width: 10px; height: 10px;
  background: var(--text);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 8999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor-dot.on-dark { background: #fff; }
.cursor-dot.hover { width: 28px; height: 28px; background: transparent; border: 1.5px solid currentColor; }

/* ── Fixed header ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 32px 0;
  pointer-events: none;
}

.site-logo {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--text);
  pointer-events: all;
  transition: color .3s;
  mix-blend-mode: multiply;
  line-height: 1;
}
.site-logo.light { color: #fff; mix-blend-mode: normal; }

.menu-pill {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--text);
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  cursor: none;
  pointer-events: all;
  transition: background .3s;
  letter-spacing: .04em;
}
.menu-pill:hover { background: #333; }
.menu-pill.active { background: #fff; color: var(--text); }

/* ── Full-screen menu overlay ─────────────────────────────── */
.menu-overlay {
  position: fixed;
  inset: 0; z-index: 300;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 60px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s cubic-bezier(.76,0,.24,1);
}
.menu-overlay.open { clip-path: inset(0 0 0% 0); }

.menu-nav {
  display: flex; flex-direction: column; gap: 6px;
}
.menu-nav-link {
  font-family: var(--serif);
  font-size: clamp(44px, 9vw, 88px);
  font-weight: 300;
  color: rgba(255,255,255,.85);
  line-height: 1.05;
  transition: color .3s, letter-spacing .3s;
  width: fit-content;
}
.menu-nav-link:hover { color: var(--accent); letter-spacing: .03em; }
.menu-nav-link.active { color: var(--accent); }

.menu-footer {
  position: absolute;
  bottom: 48px; left: 60px; right: 60px;
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

/* ── Persistent watermark bottom-right ───────────────────── */
.watermark {
  position: fixed;
  bottom: 24px; right: 28px;
  z-index: 100;
  text-align: right;
  pointer-events: none;
  user-select: none;
  display: flex; flex-direction: row; align-items: center; gap: 6px;
  mix-blend-mode: multiply;
}
.wm-is {
  font-family: var(--serif);
  font-size: 24px; font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1;
  opacity: .5;
}
.wm-word {
  font-family: var(--serif);
  font-size: 22px; font-weight: 400;
  letter-spacing: .06em;
  color: var(--text);
  line-height: 1;
  transform: scaleX(-1); display: inline-block;
  opacity: .5;
}

/* ── HERO ─────────────────────────────────────────────────── */
.s-hero {
  min-height: 100vh;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 340px;
}
.side-nav {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 0;
  writing-mode: vertical-rl;
  align-items: center;
}
.side-nav a {
  font-size: 9px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(17,17,17,.45);
  padding: 16px 8px;
  transition: color .3s;
  writing-mode: vertical-rl;
}
.side-nav a:hover { color: var(--text); }

.hero-img-panel {
  position: absolute;
  right: 0; top: 0;
  width: 340px; height: 100%;
  overflow: hidden;
}
.hero-img-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.5);
}
.hero-text {
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 80px 40px;
  padding-top: 140px;
  position: relative; z-index: 2;
  grid-column: 1;
}
.hero-small-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.hero-small-label::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--accent);
}
.hero-headline {
  font-family: var(--serif);
  font-weight: 300;
  line-height: .9;
  color: var(--text);
}
.hl { display: block; }
.hl-1 { font-size: clamp(52px, 10vw, 130px); letter-spacing: -.02em; }
.hl-2 { font-size: clamp(52px, 10vw, 130px); letter-spacing: -.02em; margin-left: clamp(16px, 3vw, 50px); }
.hl-2 em { font-style: italic; color: var(--accent); }
.hl-3 { font-size: clamp(52px, 10vw, 130px); letter-spacing: -.02em; margin-left: clamp(32px, 6vw, 100px); }
.hl-4 { font-size: clamp(52px, 10vw, 130px); letter-spacing: -.02em; font-style: italic; }
.hero-body-text {
  font-size: 13px; line-height: 1.7;
  color: var(--text-mid);
  max-width: 460px;
  margin-top: 28px;
}
.hero-cta-row {
  display: flex; gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-bottom-left {
  position: absolute;
  left: 20px; bottom: 28px;
  font-size: 11px; color: rgba(17,17,17,.4);
  letter-spacing: .06em;
}
.hero-copyright {
  position: absolute;
  left: 40px; bottom: 10px;
  font-size: 10px; color: rgba(17,17,17,.25);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  min-height: 75vh;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px 60px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.35);
  transform: scale(1.06);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
}
.page-hero-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: block; margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block; width: 36px; height: 1px;
  background: var(--accent);
}
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.025em;
  color: #fff;
}
.page-hero-title em { font-style: italic; color: var(--accent); }
.page-hero-body {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin-top: 36px;
}

/* ── HOME: ABOUT INTRO ────────────────────────────────────── */
.s-about {
  background: #fff;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 1fr;
  position: relative;
  overflow: hidden;
}
.about-images {
  position: relative;
  padding: 60px 0 60px 0;
  min-height: 100vh;
}
.about-img { position: absolute; overflow: hidden; }
.about-img-1 { top: 0; left: 0; width: 54%; height: 42%; z-index: 1; }
.about-img-2 { top: 15%; left: 28%; width: 60%; height: 48%; z-index: 2; }
.about-img-3 { bottom: 0; left: 0; width: 46%; height: 38%; z-index: 1; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-label {
  position: absolute;
  left: 50%; top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-mid);
  z-index: 10;
  white-space: nowrap;
}
.about-text {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 100px 60px 100px 20px;
  overflow: hidden;
}
.about-headline {
  font-family: var(--serif);
  font-weight: 300;
  line-height: .88;
  color: var(--text);
  margin-bottom: 48px;
  overflow: visible;
  white-space: nowrap;
}
.ah { display: block; }
.ah-1 { font-size: clamp(52px, 8vw, 110px); letter-spacing: -.02em; }
.ah-2 { font-size: clamp(52px, 8vw, 110px); letter-spacing: -.02em; }
.ah-3 { font-size: clamp(52px, 8vw, 110px); letter-spacing: -.02em; }
.ah-4 { font-size: clamp(52px, 8vw, 110px); letter-spacing: -.02em; font-style: italic; }
.about-body {
  font-size: 14px; line-height: 1.85;
  color: var(--text-mid);
  max-width: 400px;
  margin-bottom: 16px;
}
.about-cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  width: fit-content;
  transition: color .3s, letter-spacing .3s;
}
.about-cta-link:hover { color: var(--accent); letter-spacing: .22em; }

/* ── DARK MANIFESTO ───────────────────────────────────────── */
.s-manifesto {
  background: var(--bg-dark);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  position: relative;
  overflow: hidden;
}
.manifesto-left {
  display: flex;
  align-items: center;
  padding: 100px 80px 100px 60px;
}
.manifesto-body {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255,255,255,.88);
  letter-spacing: -.005em;
}
.manifesto-right {
  position: relative;
  border-left: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.manifesto-vert-text {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 48px;
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  writing-mode: vertical-rl;
  z-index: 2;
  padding: 40px 0;
}
.manifesto-vert-text span {
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.mv-word {
  font-family: var(--serif) !important;
  font-size: 13px !important;
  letter-spacing: .18em !important;
  color: rgba(255,255,255,.25) !important;
}
.manifesto-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.manifesto-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.3);
}

/* ── VALUES ───────────────────────────────────────────────── */
.s-values {
  background: var(--bg-blue);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 380px;
  position: relative;
  overflow: hidden;
}
.values-giant-words {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 0 80px 0;
  overflow: hidden;
}
.vg {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  line-height: .88;
  color: rgba(17,17,17,.75);
  white-space: nowrap;
  position: relative;
}
.vg-1 { font-size: clamp(80px, 14vw, 180px); letter-spacing: -.025em; margin-left: -4px; }
.vg-2 {
  font-size: clamp(80px, 14vw, 180px); letter-spacing: -.025em;
  margin-left: clamp(20px, 5vw, 80px);
  display: flex; align-items: center; gap: 24px;
}
.vg-3 { font-size: clamp(80px, 14vw, 180px); letter-spacing: -.025em; margin-left: -4px; }
.values-float-img {
  width: clamp(180px, 22vw, 280px);
  height: clamp(140px, 17vw, 220px);
  flex-shrink: 0;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}
.values-float-img img { width: 100%; height: 100%; object-fit: cover; }
.values-items {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 40px;
  gap: 0;
  border-left: 1px solid rgba(17,17,17,.1);
}
.values-item {
  display: flex; gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.values-item:first-child { border-top: 1px solid rgba(17,17,17,.08); }
.vi-num {
  font-family: var(--serif);
  font-size: 32px; font-weight: 300;
  color: rgba(17,17,17,.25);
  flex-shrink: 0; line-height: 1.1;
  min-width: 44px;
}
.values-item h4 {
  font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 10px; color: var(--text);
}
.values-item p { font-size: 13px; color: var(--text-mid); line-height: 1.75; }
.values-side-label {
  position: absolute;
  right: 400px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 10px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(17,17,17,.3);
  white-space: nowrap;
}

/* ── SERVICES SHOWCASE ────────────────────────────────────── */
.s-services { background: #fff; }
.services-header {
  padding: 100px 60px 72px;
  display: flex; flex-direction: column;
  border-bottom: 1px solid rgba(17,17,17,.06);
}
.section-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--text-mid);
  display: block; margin-bottom: 20px;
}
.services-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: .92; letter-spacing: -.02em;
}
.services-title em { font-style: italic; color: var(--accent); }
.srv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
}
.srv-row--dark { background: var(--bg-dark); }
.srv-row--coral { background: var(--bg-coral); }
.srv-row--blue { background: var(--bg-blue); }
.srv-row--light { background: #fff; }
.srv-img { position: relative; overflow: hidden; }
.srv-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.srv-row:hover .srv-img img { transform: scale(1.04); }
.srv-num {
  position: absolute;
  bottom: 28px; right: 28px;
  font-family: var(--serif);
  font-size: 100px; font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.15);
  line-height: 1;
  pointer-events: none; user-select: none;
}
.srv-row--light .srv-num,
.srv-row--blue .srv-num { -webkit-text-stroke-color: rgba(17,17,17,.07); }
.srv-row--coral .srv-num { -webkit-text-stroke-color: rgba(255,255,255,.2); }
.srv-text {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  gap: 24px;
}
.srv-name {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.015em;
}
.srv-row--dark .srv-name { color: #fff; }
.srv-row--coral .srv-name { color: #fff; }
.srv-name em { font-style: italic; color: var(--accent); }
.srv-row--coral .srv-name em { color: rgba(255,255,255,.7); }
.srv-row .srv-text p {
  font-size: 14px; line-height: 1.8;
  color: var(--text-mid);
  max-width: 380px;
}
.srv-row--dark .srv-text p { color: rgba(255,255,255,.45); }
.srv-row--coral .srv-text p { color: rgba(255,255,255,.75); }
.srv-link {
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  display: inline-block; width: fit-content;
  transition: letter-spacing .3s, color .3s;
}
.srv-row--dark .srv-link,
.srv-row--coral .srv-link { color: rgba(255,255,255,.8); }
.srv-link:hover { letter-spacing: .2em; color: var(--accent); }

/* Service features list inside srv-text */
.srv-features {
  display: flex; flex-direction: column; gap: 6px;
  margin: 4px 0;
}
.srv-features li {
  font-size: 12px; line-height: 1.6;
  color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 8px;
}
.srv-features li::before {
  content: '✦';
  font-size: 8px;
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.srv-row--dark .srv-features li { color: rgba(255,255,255,.4); }
.srv-row--coral .srv-features li { color: rgba(255,255,255,.7); }

/* ── SOLUTIONS GRID ───────────────────────────────────────── */
.s-solutions {
  background: var(--bg);
  padding: 100px 60px 80px;
}
.sol-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}
.sol-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: .92; letter-spacing: -.02em;
}
.sol-title em { font-style: italic; color: var(--accent); }
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 3px;
}
.sol-item {
  background: #fff;
  overflow: hidden;
  position: relative;
  cursor: none;
}
.sol-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.sol-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.sol-item:hover .sol-img img { transform: scale(1.05); }
.sol-meta {
  display: flex;
  justify-content: space-between;
  padding: 20px 28px 8px;
}
.sol-year { font-size: 11px; color: var(--text-mid); font-style: italic; }
.sol-location {
  font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-mid);
}
.sol-name {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  padding: 0 28px 10px;
  letter-spacing: -.01em;
  line-height: 1.15;
}
.sol-desc {
  font-size: 12px; line-height: 1.7;
  color: var(--text-mid);
  padding: 0 28px 16px;
}
.sol-btn {
  display: inline-block;
  margin: 0 28px 28px;
  font-size: 11px; font-weight: 500;
  border: 1px solid rgba(17,17,17,.25);
  border-radius: 100px;
  padding: 9px 20px;
  color: var(--text);
  transition: background .3s, color .3s, border-color .3s;
}
.sol-btn:hover { background: var(--text); color: #fff; border-color: var(--text); }
.sol-all-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.sol-all-img {
  background: var(--bg-blue);
  aspect-ratio: 2/1;
  position: relative;
  overflow: hidden;
}
.sol-all-img img {
  opacity: .5;
  filter: grayscale(.4);
  transition: transform .6s;
}
.sol-all-wrap:hover .sol-all-img img { transform: scale(1.04); }
.sol-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  font-size: 36px;
  color: var(--text);
  font-family: var(--serif);
}
.sol-all-label {
  display: flex;
  align-items: flex-end;
  padding: 0 0 32px 40px;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  transition: letter-spacing .4s;
}
.sol-all-label:hover { letter-spacing: .04em; }

/* ── STATS ────────────────────────────────────────────────── */
.s-stats {
  background: var(--bg);
  padding: 80px 60px;
  border-top: 1px solid rgba(17,17,17,.08);
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1400px; margin: 0 auto;
}
.stat-row {
  display: flex; flex-direction: column;
  padding: 40px 48px;
  border-right: 1px solid rgba(17,17,17,.08);
  position: relative;
}
.stat-row:last-child { border-right: none; }
.stat-row::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .8s cubic-bezier(.25,.46,.45,.94);
}
.stat-row.counted::after { width: 100%; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.025em;
  display: inline;
}
.stat-suffix {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.02em;
  vertical-align: top;
  margin-top: 8px;
  display: inline;
}
.stat-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 12px;
}

/* ── QUOTE/CTA SECTION ────────────────────────────────────── */
.s-quote {
  background: var(--bg);
  padding: 120px 60px 120px;
  position: relative;
  overflow: hidden;
}
.quote-headline {
  font-family: var(--serif);
  font-weight: 300;
  line-height: .9;
  color: var(--text);
  margin-bottom: 80px;
}
.qh { display: block; }
.qh-1 { font-size: clamp(56px, 11vw, 148px); letter-spacing: -.025em; }
.qh-2 { font-size: clamp(56px, 11vw, 148px); letter-spacing: -.025em; margin-left: clamp(40px, 8vw, 200px); }
.qh-3 { font-size: clamp(56px, 11vw, 148px); letter-spacing: -.025em; font-style: italic; color: var(--accent); margin-left: clamp(80px, 16vw, 400px); }
.qh-4 { font-size: clamp(56px, 11vw, 148px); letter-spacing: -.025em; }
.quote-body-wrap { max-width: 620px; margin-left: clamp(40px, 8vw, 200px); }
.quote-body { font-size: 16px; line-height: 1.85; color: var(--text-mid); }
.quote-cta-row {
  display: flex; gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: var(--text);
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  border: none;
  transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--accent); transform: translateX(4px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid rgba(17,17,17,.3);
  transition: background .3s, color .3s, border-color .3s;
}
.btn-secondary:hover { background: var(--text); color: #fff; border-color: var(--text); }

/* ── CONTACT ──────────────────────────────────────────────── */
.s-contact { background: var(--bg); padding-top: 0; }
.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  border-top: 1px solid rgba(17,17,17,.08);
}
.contact-meta {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 60px;
  gap: 40px;
}
.contact-title {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: .92; letter-spacing: -.02em;
}
.contact-title em { font-style: italic; color: var(--accent); }
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-details p { font-size: 15px; color: var(--text-mid); line-height: 1.6; }
.contact-img { overflow: hidden; position: relative; }
.contact-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.88);
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.contact-img:hover img { transform: scale(1.04); }
.contact-form-area {
  padding: 80px 60px 100px;
  background: var(--bg);
  border-top: 1px solid rgba(17,17,17,.08);
}
.contact-links-row {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 56px;
}
.contact-links-row a {
  font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text);
  transition: color .3s;
}
.contact-links-row a:hover { color: var(--accent); }
.cl-sep { color: rgba(17,17,17,.25); font-size: 18px; }
.contact-form { display: flex; flex-direction: column; gap: 28px; max-width: 900px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cf-group { display: flex; flex-direction: column; gap: 10px; }
.cf-full { grid-column: 1 / -1; }
.cf-group label {
  font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(17,17,17,.4);
}
.cf-group input,
.cf-group select,
.cf-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(17,17,17,.18);
  padding: 14px 0;
  font-family: var(--sans); font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .3s;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus { border-color: var(--text); }
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: rgba(17,17,17,.3); }
.cf-group select option { background: var(--bg); }
.cf-group textarea { resize: vertical; min-height: 100px; }
.cf-submit {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 44px;
  background: var(--text);
  color: #fff;
  font-family: var(--sans); font-size: 11px;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  border: none; cursor: none;
  width: fit-content;
  transition: background .3s, transform .2s;
  margin-top: 8px;
}
.cf-submit:hover { background: var(--accent); transform: translateX(4px); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  overflow: hidden;
  padding: 0 60px 0;
  border-top: 1px solid rgba(17,17,17,.08);
}
.footer-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(17,17,17,.4);
  border-bottom: 1px solid rgba(17,17,17,.06);
}
.footer-links { display: flex; gap: 32px; }
.footer-links a { transition: color .3s; }
.footer-links a:hover { color: var(--text); }
.footer-giant {
  font-family: var(--serif);
  font-size: clamp(100px, 20vw, 260px);
  font-weight: 300;
  letter-spacing: -.025em;
  color: var(--text);
  line-height: .82;
  text-align: center;
  margin: 20px -60px 0;
  padding-bottom: 0;
  user-select: none;
  pointer-events: none;
  transform: translateY(28%);
}

/* ── ABOUT PAGE SPECIFIC ──────────────────────────────────── */
.s-company-story {
  background: #fff;
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.company-story-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.02em;
}
.company-story-headline em { font-style: italic; color: var(--accent); }
.company-story-body { display: flex; flex-direction: column; gap: 20px; }
.company-story-body p { font-size: 15px; line-height: 1.85; color: var(--text-mid); }

.s-mission-vision {
  background: var(--bg-dark);
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.mv-panel {
  padding: 80px 60px;
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.mv-panel-number {
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 200px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.06);
  position: absolute;
  bottom: -20px; right: 20px;
  line-height: 1;
  user-select: none;
}
.mv-panel-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.mv-panel-label::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--accent);
}
.mv-panel-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  color: #fff;
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 32px;
}
.mv-panel-body {
  font-size: 14px; line-height: 1.85;
  color: rgba(255,255,255,.5);
  max-width: 420px;
  position: relative; z-index: 2;
}

.s-process {
  background: var(--bg);
  padding: 120px 60px;
}
.process-header {
  display: flex; flex-direction: column;
  margin-bottom: 80px;
}
.process-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: .92; letter-spacing: -.02em;
}
.process-title em { font-style: italic; color: var(--accent); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.process-step {
  background: #fff;
  padding: 48px 32px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.04);
}
.process-step-num {
  font-family: var(--serif);
  font-size: clamp(80px, 10vw, 120px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17,17,17,.06);
  position: absolute;
  bottom: -10px; right: -10px;
  line-height: 1;
  user-select: none;
}
.process-step-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .3;
  display: block;
  margin-bottom: 24px;
}
.process-step-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 300;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.process-step-body {
  font-size: 12px; line-height: 1.75;
  color: var(--text-mid);
  position: relative; z-index: 2;
}

.s-leadership {
  background: #fff;
  padding: 120px 60px;
}
.leadership-header { margin-bottom: 80px; }
.leadership-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: .92; letter-spacing: -.02em;
}
.leadership-title em { font-style: italic; color: var(--accent); }
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.leader-card {
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.leader-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.leader-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.leader-card:hover .leader-img img { transform: scale(1.04); }
.leader-info {
  padding: 28px 32px 36px;
}
.leader-name {
  font-family: var(--serif);
  font-size: 28px; font-weight: 300;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.leader-title {
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.leader-bio { font-size: 12px; line-height: 1.75; color: var(--text-mid); }

.s-timeline {
  background: var(--bg-blue);
  padding: 120px 60px;
  overflow: hidden;
}
.timeline-header { margin-bottom: 80px; }
.timeline-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: .92; letter-spacing: -.02em;
}
.timeline-title em { font-style: italic; color: var(--accent); }
.timeline-track {
  position: relative;
  padding-left: 40px;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: rgba(17,17,17,.15);
}
.timeline-item {
  position: relative;
  padding: 0 0 72px 60px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px; top: 8px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-blue);
}
.timeline-year {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: rgba(17,17,17,.2);
  letter-spacing: -.025em;
  line-height: 1;
  margin-bottom: 12px;
}
.timeline-event-title {
  font-size: 16px; font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 8px;
  color: var(--text);
}
.timeline-event-body { font-size: 13px; line-height: 1.75; color: var(--text-mid); max-width: 580px; }

.s-tech {
  background: var(--bg-dark);
  padding: 120px 60px;
}
.tech-header { margin-bottom: 80px; }
.tech-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: .92; letter-spacing: -.02em;
  color: #fff;
}
.tech-title em { font-style: italic; color: var(--accent); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
}
.tech-item {
  background: var(--bg-dark);
  padding: 40px 36px;
  transition: background .3s;
}
.tech-item:hover { background: rgba(255,255,255,.04); }
.tech-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  margin-bottom: 20px;
}
.tech-item-name {
  font-family: var(--serif);
  font-size: 22px; font-weight: 300;
  color: rgba(255,255,255,.88);
  margin-bottom: 10px;
}
.tech-item-desc { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.35); }

/* ── SERVICES PAGE SPECIFIC ───────────────────────────────── */
.s-services-intro {
  background: #fff;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid rgba(17,17,17,.06);
}
.services-intro-text { display: flex; flex-direction: column; gap: 20px; }
.services-intro-text p { font-size: 15px; line-height: 1.85; color: var(--text-mid); }
.services-intro-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.02em;
}
.services-intro-headline em { font-style: italic; color: var(--accent); }

/* Expanded service detail rows */
.srv-detail {
  padding: 0;
  border-bottom: 1px solid rgba(17,17,17,.06);
}
.srv-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}
.srv-detail-img {
  overflow: hidden;
  position: relative;
}
.srv-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.srv-detail:hover .srv-detail-img img { transform: scale(1.04); }
.srv-detail-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.srv-detail--dark .srv-detail-content { background: var(--bg-dark); }
.srv-detail--coral .srv-detail-content { background: var(--bg-coral); }
.srv-detail--blue .srv-detail-content { background: var(--bg-blue); }
.srv-detail--white .srv-detail-content { background: #fff; }
.srv-detail-num {
  font-family: var(--serif);
  font-size: clamp(80px, 10vw, 120px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17,17,17,.07);
  line-height: 1;
  user-select: none;
  display: block;
}
.srv-detail--dark .srv-detail-num { -webkit-text-stroke-color: rgba(255,255,255,.06); }
.srv-detail--coral .srv-detail-num { -webkit-text-stroke-color: rgba(255,255,255,.15); }
.srv-detail-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.02em;
}
.srv-detail--dark .srv-detail-title { color: #fff; }
.srv-detail--coral .srv-detail-title { color: #fff; }
.srv-detail-title em { font-style: italic; color: var(--accent); }
.srv-detail--coral .srv-detail-title em { color: rgba(255,255,255,.7); }
.srv-detail-body {
  font-size: 14px; line-height: 1.8;
  color: var(--text-mid);
  max-width: 400px;
}
.srv-detail--dark .srv-detail-body { color: rgba(255,255,255,.45); }
.srv-detail--coral .srv-detail-body { color: rgba(255,255,255,.8); }
.srv-detail-features {
  display: flex; flex-direction: column; gap: 8px;
}
.srv-detail-features li {
  font-size: 12px; line-height: 1.6;
  color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17,17,17,.06);
}
.srv-detail-features li::before {
  content: '✦';
  font-size: 8px; color: var(--accent);
  margin-top: 4px; flex-shrink: 0;
}
.srv-detail--dark .srv-detail-features li { color: rgba(255,255,255,.4); border-color: rgba(255,255,255,.06); }
.srv-detail--coral .srv-detail-features li { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.15); }
.srv-detail-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.srv-outcome-item {
  padding: 16px;
  background: rgba(17,17,17,.04);
  border-left: 2px solid var(--accent);
}
.srv-detail--dark .srv-outcome-item { background: rgba(255,255,255,.05); }
.srv-outcome-value {
  font-family: var(--serif);
  font-size: 28px; font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.srv-outcome-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-mid);
}
.srv-detail--dark .srv-outcome-label { color: rgba(255,255,255,.35); }

/* ── SOLUTIONS PAGE SPECIFIC ──────────────────────────────── */
.s-solutions-hero {
  background: #fff;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid rgba(17,17,17,.06);
}
.solutions-hero-text { display: flex; flex-direction: column; gap: 20px; }
.solutions-hero-text p { font-size: 15px; line-height: 1.85; color: var(--text-mid); }
.solutions-hero-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.02em;
}
.solutions-hero-headline em { font-style: italic; color: var(--accent); }

.sol-featured {
  background: var(--bg);
  padding: 120px 60px;
}
.sol-featured-header { margin-bottom: 80px; }
.sol-featured-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: .92; letter-spacing: -.02em;
}
.sol-featured-title em { font-style: italic; color: var(--accent); }
.sol-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.sol-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sol-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.sol-card-img img {
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.sol-card:hover .sol-card-img img { transform: scale(1.05); }
.sol-card-body {
  padding: 40px 40px 48px;
  display: flex; flex-direction: column;
  gap: 16px;
  flex: 1;
}
.sol-card-tag {
  font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
}
.sol-card-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.sol-card-desc {
  font-size: 13px; line-height: 1.75;
  color: var(--text-mid);
}
.sol-card-features {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(17,17,17,.06);
}
.sol-card-features li {
  font-size: 11px; line-height: 1.6;
  color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 8px;
}
.sol-card-features li::before {
  content: '✦'; font-size: 7px;
  color: var(--accent); margin-top: 3px; flex-shrink: 0;
}
.sol-card-meta {
  display: flex; justify-content: space-between;
  align-items: flex-end;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid rgba(17,17,17,.06);
}
.sol-card-industries {
  font-size: 9px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-mid);
}
.sol-card-link {
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .3s, letter-spacing .3s;
}
.sol-card-link:hover { color: var(--accent); letter-spacing: .2em; }

.s-enterprise {
  background: var(--bg-dark);
  padding: 120px 60px;
}
.enterprise-header { margin-bottom: 80px; }
.enterprise-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: .92; letter-spacing: -.02em;
  color: #fff;
}
.enterprise-title em { font-style: italic; color: var(--accent); }
.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
}
.enterprise-item {
  background: var(--bg-dark);
  padding: 60px 56px;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.enterprise-item:hover { background: rgba(255,255,255,.03); }
.enterprise-item-num {
  font-family: var(--serif);
  font-size: clamp(80px, 10vw, 120px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.05);
  position: absolute;
  bottom: -10px; right: 20px;
  line-height: 1;
  user-select: none;
}
.enterprise-item-title {
  font-family: var(--serif);
  font-size: 32px; font-weight: 300;
  color: rgba(255,255,255,.88);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.enterprise-item-desc {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,.4);
  max-width: 400px;
  position: relative; z-index: 2;
}
.enterprise-item-value {
  margin-top: 24px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 8px;
}
.enterprise-item-value::before {
  content: '';
  display: block; width: 20px; height: 1px;
  background: var(--accent);
}

.s-industries {
  background: var(--bg-blue);
  padding: 120px 60px;
}
.industries-header { margin-bottom: 80px; }
.industries-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: .92; letter-spacing: -.02em;
}
.industries-title em { font-style: italic; color: var(--accent); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.industry-item {
  background: rgba(255,255,255,.6);
  padding: 44px 36px;
  transition: background .3s, transform .3s;
  cursor: none;
}
.industry-item:hover { background: #fff; transform: translateY(-4px); }
.industry-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 6px;
  margin-bottom: 20px;
}
.industry-name {
  font-family: var(--serif);
  font-size: 22px; font-weight: 300;
  margin-bottom: 10px;
}
.industry-desc { font-size: 12px; line-height: 1.7; color: var(--text-mid); }

/* ── CONTACT PAGE SPECIFIC ────────────────────────────────── */
.s-contact-info {
  background: #fff;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(17,17,17,.06);
}
.contact-info-item {
  padding: 60px 48px;
  border-right: 1px solid rgba(17,17,17,.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-item:last-child { border-right: none; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: 1px solid rgba(17,17,17,.1);
  border-radius: 50%;
}
.contact-info-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-mid);
}
.contact-info-value {
  font-family: var(--serif);
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -.01em;
}

.s-contact-faq {
  background: var(--bg);
  padding: 120px 60px;
}
.faq-header { margin-bottom: 80px; }
.faq-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: .92; letter-spacing: -.02em;
}
.faq-title em { font-style: italic; color: var(--accent); }
.faq-list {
  max-width: 900px;
  display: flex; flex-direction: column;
}
.faq-item {
  border-top: 1px solid rgba(17,17,17,.1);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: 1px solid rgba(17,17,17,.1); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: none;
  gap: 24px;
}
.faq-question-text {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.faq-toggle {
  font-size: 28px; font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.76,0,.24,1);
  line-height: 1;
  width: 32px; text-align: center;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  font-size: 14px; line-height: 1.85;
  color: var(--text-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.76,0,.24,1), padding .4s;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 28px; }

.s-map-placeholder {
  background: var(--bg-blue);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.map-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--text-mid);
  display: flex; align-items: center; gap: 14px;
}
.map-label::before {
  content: '';
  display: block; width: 36px; height: 1px;
  background: var(--accent);
}
.map-frame {
  width: 100%;
  min-height: 400px;
  background: rgba(17,17,17,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-frame-inner {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.map-pin {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.map-city {
  font-family: var(--serif);
  font-size: 36px; font-weight: 300;
  letter-spacing: -.01em;
  color: var(--text);
}
.map-address {
  font-size: 13px; line-height: 1.7;
  color: var(--text-mid);
}

/* ── SCROLL ANIMATIONS — initial states ───────────────────── */
.fade-up { opacity: 0; transform: translateY(52px); }
.fade-left { opacity: 0; transform: translateX(-52px); }
.img-clip { clip-path: inset(0 0 100% 0); }
.img-clip img { transform: scale(1.1); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .s-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 80px 40px 60px; justify-content: flex-start; }
  .side-nav { display: none; }
  .hero-img-panel { display: none; }

  .s-about { grid-template-columns: 1fr; }
  .about-images { height: 60vw; min-height: 360px; position: relative; }
  .about-text { padding: 60px 40px; overflow: visible; }
  .about-headline { white-space: normal; }

  .s-manifesto { grid-template-columns: 1fr; }
  .manifesto-right { height: 50vw; }

  .s-values { grid-template-columns: 1fr; }
  .values-giant-words { padding: 60px 40px 0; }
  .vg-2 { flex-direction: column; gap: 0; }
  .values-float-img { width: 180px; height: 140px; }
  .values-items { border-left: none; border-top: 1px solid rgba(17,17,17,.1); padding: 40px; }
  .values-side-label { display: none; }

  .srv-row { grid-template-columns: 1fr; min-height: auto; }
  .srv-img { height: 55vw; min-height: 300px; }
  .srv-row--dark .srv-text,
  .srv-row--coral .srv-text { order: -1; }
  .srv-text { padding: 48px 40px; }

  .srv-detail-inner { grid-template-columns: 1fr; }
  .srv-detail-img { height: 55vw; min-height: 300px; }
  .srv-detail--dark .srv-detail-content,
  .srv-detail--coral .srv-detail-content { order: -1; }
  .srv-detail-content { padding: 60px 40px; }

  .sol-grid { grid-template-columns: 1fr; }
  .sol-all-wrap { grid-template-columns: 1fr; }
  .sol-all-img { aspect-ratio: 16/5; }
  .sol-card-grid { grid-template-columns: 1fr; }
  .enterprise-grid { grid-template-columns: 1fr; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-row:nth-child(2) { border-right: none; }
  .stat-row:nth-child(3) { border-top: 1px solid rgba(17,17,17,.08); border-right: 1px solid rgba(17,17,17,.08); }
  .stat-row:last-child { border-top: 1px solid rgba(17,17,17,.08); }

  .contact-top { grid-template-columns: 1fr; }
  .contact-img { height: 60vw; }
  .cf-row { grid-template-columns: 1fr; }

  .s-company-story { grid-template-columns: 1fr; gap: 48px; }
  .s-mission-vision { grid-template-columns: 1fr; gap: 0; }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .s-contact-info { grid-template-columns: 1fr; }
  .contact-info-item { border-right: none; border-bottom: 1px solid rgba(17,17,17,.06); }

  .s-solutions-hero { grid-template-columns: 1fr; gap: 48px; }
  .s-services-intro { grid-template-columns: 1fr; gap: 48px; }

  .page-hero { padding: 0 0 80px 40px; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot { display: none; }

  .site-header { padding: 20px 20px 0; }
  .menu-pill { padding: 8px 18px; font-size: 12px; }

  .s-services { overflow-x: hidden; }
  .s-solutions, .s-stats, .s-quote, .s-contact .contact-form-area { padding-left: 24px; padding-right: 24px; }
  .s-values .values-items, .s-about .about-text { padding-left: 24px; padding-right: 24px; }
  .services-header, .sol-header { padding: 60px 24px 40px; }
  .hero-text { padding: 50px 24px 40px; }
  .hero-small-label { margin-bottom: 12px; }
  .hero-body-text { margin-top: 14px; }
  .hero-cta-row { margin-top: 16px; }
  .contact-meta { padding: 60px 24px; }
  .site-footer { padding: 0 24px 0; }
  .footer-bar { flex-direction: column; gap: 16px; text-align: center; }

  .quote-headline .qh-2 { margin-left: 20px; }
  .quote-headline .qh-3 { margin-left: 0; font-size: clamp(44px, 12vw, 100px); }
  .quote-headline .qh-4 { font-size: clamp(44px, 12vw, 100px); }
  .quote-body-wrap { margin-left: 0; }

  .menu-overlay { padding: 80px 24px 48px; }
  .menu-footer { left: 24px; right: 24px; flex-direction: column; gap: 6px; }

  .s-company-story, .s-solutions-hero, .s-services-intro { padding: 60px 24px; }
  .s-mission-vision { padding: 60px 0; }
  .mv-panel { padding: 60px 24px; }
  .s-process, .s-leadership, .s-timeline, .s-tech { padding: 80px 24px; }
  .leadership-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .sol-featured, .s-enterprise, .s-industries { padding: 80px 24px; }
  .s-contact-faq { padding: 80px 24px; }
  .s-map-placeholder { padding: 60px 24px; }
  .page-hero { padding: 0 0 60px 24px; min-height: 60vh; }
  .hero-cta-row { flex-direction: column; gap: 12px; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .hero-text { padding: 40px 20px 30px; }
  .hero-small-label { margin-bottom: 10px; }
  .hl-2 { margin-left: 0; }
  .hl-3 { margin-left: 0; }
  .hero-headline { line-height: .8; }
  .hero-body-text { margin-top: 10px; font-size: 12px; }
  .hero-cta-row { margin-top: 14px; flex-direction: column; gap: 8px; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-secondary { width: 100%; justify-content: center; padding: 10px 16px; font-size: 12px; }
  .hero-bottom-left { display: none; }
  .hero-copyright { left: 20px; }

  .s-about { grid-template-columns: 1fr; }
  .about-images { height: 50vw; min-height: 260px; }
  .about-text { padding: 40px 20px; }
  .about-headline { white-space: normal; }
  .about-body { max-width: 100%; }

  .s-manifesto { grid-template-columns: 1fr; }
  .manifesto-left { padding: 60px 24px; }
  .manifesto-right { height: 40vw; }
  .manifesto-vert-text { width: 36px; }

  .s-values { grid-template-columns: 1fr; }
  .values-giant-words { padding: 40px 20px 0; }
  .vg-2 { flex-direction: column; align-items: flex-start; gap: 0; margin-left: 0; }
  .values-float-img { width: 140px; height: 100px; }
  .values-items { border-left: none; border-top: 1px solid rgba(17,17,17,.1); padding: 24px 20px; }
  .values-side-label { display: none; }

  .services-header { padding: 40px 20px 32px; }
  .srv-row { grid-template-columns: 1fr; min-height: auto; }
  .srv-img { height: 50vw; min-height: 220px; }
  .srv-text { padding: 32px 20px; }
  .srv-row--dark .srv-text,
  .srv-row--coral .srv-text { order: -1; }

  .sol-header { padding: 40px 20px 32px; }
  .sol-grid { grid-template-columns: 1fr; }
  .sol-all-wrap { grid-template-columns: 1fr; }
  .sol-all-img { aspect-ratio: 16/5; }
  .sol-all-label { padding: 0 0 24px 20px; }
  .sol-meta { padding: 16px 20px 4px; }
  .sol-name { padding: 0 20px 8px; }
  .sol-desc { padding: 0 20px 12px; }
  .sol-btn { margin: 0 20px 20px; }

  .s-stats { padding: 40px 20px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-row { padding: 24px 20px; }
  .stat-row:nth-child(2) { border-right: none; }
  .stat-row:nth-child(3) { border-top: 1px solid rgba(17,17,17,.08); }
  .stat-row:last-child { border-top: 1px solid rgba(17,17,17,.08); border-right: none; }

  .s-quote { display: none; }
  .quote-headline { margin-bottom: 40px; }
  .qh-2 { margin-left: 0; }
  .qh-3 { margin-left: 0; font-size: clamp(40px, 14vw, 80px); }
  .qh-4 { font-size: clamp(40px, 14vw, 80px); }
  .quote-body-wrap { margin-left: 0; }
  .quote-body { font-size: 14px; }
  .quote-cta-row { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  .site-footer { padding: 0 20px; }
  .footer-bar { flex-direction: column; gap: 12px; text-align: center; }

  .site-header { padding: 16px 20px 0; }
  .menu-pill { padding: 7px 16px; font-size: 11px; }
  .menu-overlay { padding: 60px 20px 40px; }
  .menu-nav-link { font-size: clamp(32px, 10vw, 48px); }
  .menu-footer { left: 20px; right: 20px; flex-direction: column; gap: 4px; }

  .page-hero { padding: 0 0 40px 20px; min-height: 50vh; }
  .page-hero-body { font-size: 13px; margin-top: 24px; max-width: 100%; }
  .page-hero-eyebrow { margin-bottom: 20px; }

  .watermark { bottom: 12px; right: 16px; }
  .wm-is { font-size: 16px; }
  .wm-word { font-size: 14px; }

  .s-company-story { padding: 40px 20px; grid-template-columns: 1fr; gap: 32px; }
  .s-mission-vision { padding: 40px 0; grid-template-columns: 1fr; gap: 0; }
  .mv-panel { padding: 40px 20px; }
  .mv-panel-body { max-width: 100%; }

  .s-process { padding: 40px 20px; }
  .process-header { margin-bottom: 40px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 32px 24px 28px; }

  .s-leadership { padding: 40px 20px; }
  .leadership-header { margin-bottom: 40px; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-info { padding: 20px 24px 28px; }
  .leader-name { font-size: 24px; }

  .s-timeline { padding: 40px 20px; }
  .timeline-header { margin-bottom: 40px; }
  .timeline-item { padding: 0 0 48px 40px; }

  .s-tech { padding: 40px 20px; }
  .tech-header { margin-bottom: 40px; }
  .tech-grid { grid-template-columns: 1fr; }
  .tech-item { padding: 28px 24px; }

  .srv-detail-inner { grid-template-columns: 1fr; }
  .srv-detail-img { height: 50vw; min-height: 220px; }
  .srv-detail-content { padding: 40px 20px; }
  .srv-detail--dark .srv-detail-content,
  .srv-detail--coral .srv-detail-content { order: -1; }
  .srv-detail-body { max-width: 100%; }

  .s-services-intro { padding: 40px 20px; grid-template-columns: 1fr; gap: 32px; }
  .s-solutions-hero { padding: 40px 20px; grid-template-columns: 1fr; gap: 32px; }

  .sol-featured { padding: 40px 20px; }
  .sol-featured-header { margin-bottom: 40px; }
  .sol-card-grid { grid-template-columns: 1fr; }
  .sol-card-body { padding: 28px 24px 36px; }
  .sol-card-img { aspect-ratio: 4/3; }

  .s-enterprise { padding: 40px 20px; }
  .enterprise-header { margin-bottom: 40px; }
  .enterprise-grid { grid-template-columns: 1fr; }
  .enterprise-item { padding: 40px 28px; }

  .s-industries { padding: 40px 20px; }
  .industries-header { margin-bottom: 40px; }
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .industry-item { padding: 28px 20px; }

  .s-contact-info { grid-template-columns: 1fr; }
  .contact-info-item { padding: 40px 20px; border-right: none; border-bottom: 1px solid rgba(17,17,17,.06); }
  .contact-meta { padding: 40px 20px; }

  .contact-top { grid-template-columns: 1fr; }
  .contact-img { height: 50vw; }
  .contact-form-area { padding: 40px 20px; }
  .cf-row { grid-template-columns: 1fr; }
  .contact-links-row { flex-wrap: wrap; gap: 12px; }

  .s-contact-faq { padding: 40px 20px; }
  .faq-header { margin-bottom: 40px; }
  .faq-question-text { font-size: 16px; }

  .s-map-placeholder { padding: 40px 20px; }
  .map-frame { min-height: 280px; }
  .map-city { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation: none !important; }
}
