/* ===============================================
   Lexyn Consulting — Awwwards-grade premium UI
   =============================================== */

/* ---------- Tokens ---------- */
:root {
  --bone: #F5F2EC;
  --bone-2: #EDE8DF;
  --bone-3: #E5DFD2;
  --paper: #FBF8F2;
  --ink: #0D0F12;
  --ink-2: #15171B;
  --ink-3: #1E2128;
  --text: #0F0F0F;
  --muted: #555555;
  --muted-2: #8A8A85;
  --rule: rgba(15, 15, 15, 0.10);
  --rule-2: rgba(15, 15, 15, 0.20);
  --rule-light: rgba(245, 242, 236, 0.10);
  --rule-light-2: rgba(245, 242, 236, 0.20);
  --accent: #C58B4E;
  --accent-soft: #D9A874;
  --accent-deep: #A26F33;

  --serif: 'Playfair Display', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --shadow-sm: 0 1px 2px rgba(15,15,15,0.04), 0 2px 8px rgba(15,15,15,0.04);
  --shadow-md: 0 10px 30px -10px rgba(15,15,15,0.12), 0 30px 60px -30px rgba(15,15,15,0.20);
  --shadow-lg: 0 30px 80px -20px rgba(15,15,15,0.30);
  --shadow-accent: 0 20px 40px -16px rgba(197,139,78,0.45);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 32px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 64px);
  --pad-y: clamp(96px, 12vw, 168px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -0.015em; }
p { margin: 0; }
::selection { background: var(--accent); color: var(--ink); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ---------- Type helpers ---------- */
.serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; }
.accent { color: var(--accent); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(197,139,78,0.16);
  font-style: normal;
  animation: pulse 2.4s var(--ease-in-out) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(197,139,78,0.16); }
  50% { box-shadow: 0 0 0 8px rgba(197,139,78,0.04); }
}

.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 18px;
}

.section-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 32px;
}
.section-index::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.section-index--light { color: rgba(245,242,236,0.55); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 18ch;
}
.section-title--light { color: var(--bone); max-width: 22ch; }

.section-head { margin-bottom: clamp(56px, 7vw, 88px); }
.section-head--split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
}
.section-head__note {
  font-size: 16px;
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.65;
  border-left: 1px solid var(--rule);
  padding-left: 20px;
}

/* ---------- Word reveal animation ---------- */
[data-reveal-words] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
  padding-right: 0.08em;
  margin-right: -0.08em;
}
[data-reveal-words] .word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
  will-change: transform;
}
[data-reveal-words].is-visible .word > span { transform: translateY(0); }

/* ---------- Cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.cursor.is-active { opacity: 1; }
.cursor__dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease);
}
.cursor__ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.cursor.is-link .cursor__ring { width: 56px; height: 56px; border-color: rgba(255,255,255,0.9); }
.cursor.is-link .cursor__dot { width: 4px; height: 4px; }
.cursor.is-cta .cursor__ring { width: 64px; height: 64px; background: rgba(255,255,255,0.08); border-color: transparent; }
.cursor.is-cta .cursor__dot { width: 8px; height: 8px; }
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ---------- Progress ---------- */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 9998;
  pointer-events: none;
}
.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width .15s linear;
}

/* ---------- Buttons ---------- */
.btn {
  --bh: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: var(--bh);
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform .5s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .5s var(--ease);
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  will-change: transform;
}
.btn--lg { --bh: 62px; padding: 0 30px; font-size: 15px; }

.btn__label {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2;
}
.btn__text {
  display: block;
  transition: transform .55s var(--ease);
}
.btn__text--hover {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.btn:hover .btn__text { transform: translateY(-100%); }
.btn:hover .btn__text--hover { transform: translateY(-100%); }

.btn--primary {
  background: var(--ink);
  color: var(--bone);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 8px 24px -10px rgba(13,15,18,0.45);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  transform: translateY(101%);
  transition: transform .6s var(--ease);
  z-index: -1;
}
.btn--primary:hover {
  color: #1a0f04;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary svg { transition: transform .45s var(--ease); }
.btn--primary:hover svg { transform: translate(3px,-3px); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--rule-2);
}
.btn--ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: translateY(101%);
  transition: transform .6s var(--ease);
  z-index: -1;
}
.btn--ghost:hover { color: var(--bone); border-color: var(--text); }
.btn--ghost:hover::before { transform: translateY(0); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(245, 242, 236, 0.72);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom-color: var(--rule);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  transition: padding .4s var(--ease);
}
.nav.is-scrolled .nav__inner { padding-top: 14px; padding-bottom: 14px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: #15181C;
  color: var(--bone);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 6px 16px -6px rgba(15,15,15,0.3);
  position: relative;
  overflow: hidden;
}
.brand__mark span { position: relative; z-index: 2; transition: transform .5s var(--ease); }
.brand__mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  transform: translateY(101%);
  transition: transform .55s var(--ease);
}
.brand:hover .brand__mark::before { transform: translateY(0); }
.brand:hover .brand__mark span { color: var(--ink); }
.brand__mark--lg { width: 48px; height: 48px; font-size: 24px; border-radius: 12px; }
.brand__word {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.brand__word-main {
  font-size: 15px;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand__word-sub {
  font-size: 9px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.nav__links { display: flex; justify-content: center; gap: 4px; }
.nav__links > a {
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color .25s var(--ease);
}
.nav__links > a:hover { color: var(--text); }
.nav-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1.4em;
  line-height: 1.4;
  vertical-align: bottom;
}
.nav-link > span {
  display: block;
  position: relative;
  transition: transform .45s var(--ease);
}
.nav-link > span::after {
  content: attr(data-text);
  position: absolute;
  top: 100%; left: 0;
  color: var(--text);
}
.nav__links > a:hover .nav-link > span { transform: translateY(-100%); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  font-size: 13px;
  font-weight: 500;
  transition: background .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.nav__cta-label, .nav__cta svg { position: relative; z-index: 1; }
.nav__cta:hover { color: var(--ink); box-shadow: var(--shadow-accent); }
.nav__cta:hover::before { transform: translateY(0); }
.nav__cta svg { transition: transform .4s var(--ease); }
.nav__cta:hover svg { transform: translate(2px,-2px); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--rule-2);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__burger span { display: block; width: 16px; height: 1.5px; background: var(--text); transition: transform .3s var(--ease); }

/* ============ 1. HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.hero__grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.hero__grid span {
  display: block;
  border-left: 1px solid var(--rule);
  position: relative;
}
.hero__grid span:first-child { opacity: 0; }
.hero__grid span:last-child { border-right: 1px solid var(--rule); }
.hero__grid span:nth-child(4)::before {
  content: '';
  position: absolute;
  top: 30%; left: -1px;
  width: 1px; height: 80px;
  background: var(--accent);
  opacity: 0.6;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
  will-change: transform;
}
.hero__orb--a {
  width: 580px; height: 580px;
  top: -160px; right: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(197,139,78,0.55), transparent 60%);
  animation: float 20s ease-in-out infinite;
}
.hero__orb--b {
  width: 460px; height: 460px;
  bottom: -180px; left: -120px;
  background: radial-gradient(circle at 60% 60%, rgba(13,15,18,0.20), transparent 60%);
  animation: float 22s ease-in-out infinite -10s;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(28px, -22px) scale(1.04); }
  66% { transform: translate(-18px, 16px) scale(0.98); }
}

.hero__rail {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  z-index: 1;
}
.hero__rail-line { width: 1px; height: 220px; background: linear-gradient(180deg, var(--rule-2), transparent); }
.hero__rail-mark--vert { writing-mode: vertical-rl; transform: rotate(180deg); }

.hero__inner { width: 100%; position: relative; }


.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 144px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 14ch;
  margin-bottom: -40px;
  position: relative;
  z-index: 2;
}
.accent-word {
  position: relative;
  color: var(--accent);
  font-style: italic;
  display: inline-block;
}
.accent-word__dot { color: var(--text); }

.hl {
  position: relative;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  z-index: 0;
}
.hl::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 1px;
  height: 8px;
  background: rgba(197,139,78,0.22);
  z-index: -1;
  transition: height .4s var(--ease);
}
.hl:hover::after { height: 100%; }

.hero__columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 112px;
  padding-top: 64px;
  position: relative;
  z-index: 1;
}
.hero__lede {
  max-width: 56ch;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--muted);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.hero__foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.hero__foot-item {
  padding: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.hero__foot-item::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 36px; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease) calc(var(--i, 0) * 100ms);
}
.hero__foot-item:nth-child(1) { --i: 0; }
.hero__foot-item:nth-child(2) { --i: 1; }
.hero__foot-item:nth-child(3) { --i: 2; }
.hero__foot-item:nth-child(4) { --i: 3; }
.is-visible.hero__foot .hero__foot-item::before,
.hero__foot.is-visible .hero__foot-item::before { transform: scaleX(1); }
.hero__foot-item .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
}
.hero__foot-item .lbl {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero__scroll-track {
  width: 1px; height: 56px;
  background: var(--rule-2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-dot {
  position: absolute;
  top: 0; left: -1px;
  width: 3px; height: 16px;
  background: var(--accent);
  animation: scroll-dot 2.2s var(--ease-in-out) infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(-100%); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(360%); opacity: 0; }
}
.hero__scroll-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ============ 2. TRUST ============ */
.trust {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 64px 0 0;
  background: linear-gradient(180deg, var(--bone-2), var(--bone));
  overflow: hidden;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
.trust__metric {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid var(--rule);
  padding-left: 24px;
  transition: transform .4s var(--ease);
}
.trust__metric:first-child { border-left: 0; padding-left: 0; }
.trust__metric:hover { transform: translateY(-4px); }
.trust__num {
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.trust__num b { font-weight: 500; }
.trust__num i { font-style: normal; color: var(--accent); font-weight: 400; }
.trust__lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.trust__marquee {
  border-top: 1px solid var(--rule);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.trust__track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
}
.trust:hover .trust__track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.trust__logo {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 500;
  font-style: italic;
  flex-shrink: 0;
  transition: color .3s var(--ease);
}
.trust__logo:hover { color: var(--text); }
.trust__sep {
  color: var(--accent);
  font-size: 10px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ============ 3. ABOUT ============ */
.about { padding: var(--pad-y) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(56px, 9vw, 140px);
  align-items: start;
}
.about__head { position: sticky; top: 120px; }
.about__statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.8vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.about__copy { padding-top: 96px; }
.about__lead {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}
.about__sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 36px;
}
.about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about__chips li {
  padding: 9px 16px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  cursor: default;
}
.about__chips li:hover {
  background: var(--text);
  color: var(--bone);
  border-color: var(--text);
  transform: translateY(-2px);
}

/* ============ 4. PHILOSOPHY ============ */
.philosophy {
  padding: clamp(80px, 11vw, 160px) 0;
  border-top: 1px solid var(--rule);
  position: relative;
  background:
    radial-gradient(circle at 20% 50%, rgba(197,139,78,0.06), transparent 60%),
    var(--bone);
}
.philosophy__inner {
  max-width: 1100px;
}
.philosophy__index { display: block; margin-bottom: 48px; }
.philosophy__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 28ch;
}
.philosophy__quote-tail { color: var(--muted); }
.philosophy__sign {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.philosophy__line { width: 56px; height: 1px; background: var(--accent); }

/* ============ 5. SERVICES ============ */
.services {
  padding: var(--pad-y) 0;
  background: var(--bone-2);
  border-top: 1px solid var(--rule);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  padding: 40px 36px 36px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  min-height: 460px;
  transition: transform .6s var(--ease), border-color .45s var(--ease), box-shadow .6s var(--ease);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}
.card__halo {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(400px circle at var(--mx) var(--my), rgba(197,139,78,0.14), transparent 50%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.card__halo--dark {
  background: radial-gradient(400px circle at var(--mx) var(--my), rgba(197,139,78,0.30), transparent 55%);
}
.card:hover .card__halo { opacity: 1; }
.card > *:not(.card__halo) { position: relative; z-index: 1; }
.card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.card:hover .card__arrow {
  color: var(--accent);
  transform: translate(6px,-6px) rotate(-2deg);
}

.card__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.card__title {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  font-weight: 500;
}
.card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 28px;
}
.card__list {
  margin-top: auto;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__list li {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding-left: 18px;
  transition: padding-left .3s var(--ease), color .3s var(--ease);
}
.card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.card__list li:hover { padding-left: 22px; }
.card__list li:hover::before { width: 12px; }

.card__arrow {
  position: absolute;
  top: 36px; right: 32px;
  color: var(--muted);
  transition: color .4s var(--ease), transform .5s var(--ease);
  z-index: 1;
}
.card__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(197,139,78,0.4);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  background: rgba(197,139,78,0.08);
}
.card--feature {
  background: var(--ink);
  color: var(--bone);
  border-color: transparent;
}
.card--feature .card__no { color: var(--accent-soft); }
.card--feature .card__desc { color: rgba(245,242,236,0.7); }
.card--feature .card__list { border-top-color: var(--rule-light); }
.card--feature .card__list li { color: var(--bone); }
.card--feature .card__arrow { color: var(--bone); }
.card--feature:hover { border-color: var(--accent); }

/* ============ 6. PROCESS ============ */
.process { padding: var(--pad-y) 0; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-2);
  position: relative;
  counter-reset: step;
}
.process__step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: padding .4s var(--ease);
}
.process__step:last-child { border-right: 0; }
.process__rule {
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .6s var(--ease);
}
.process__step:hover .process__rule { width: 60%; }
.process__step:hover { padding-left: 6px; }
.process__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  display: block;
  margin-bottom: 72px;
}
.process__step h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  transition: transform .4s var(--ease);
}
.process__step:hover h3 { transform: translateX(4px); }
.process__step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 28ch;
}

/* ============ 7. WHY (DARK BENTO) ============ */
.why {
  position: relative;
  background: var(--ink);
  color: var(--bone);
  padding: var(--pad-y) 0;
  isolation: isolate;
  overflow: hidden;
}
.why__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.why__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.why__glow--a {
  width: 640px; height: 640px;
  top: -220px; left: -120px;
  background: radial-gradient(circle, rgba(197,139,78,0.4), transparent 60%);
  animation: float 24s ease-in-out infinite;
}
.why__glow--b {
  width: 540px; height: 540px;
  bottom: -180px; right: -160px;
  background: radial-gradient(circle, rgba(197,139,78,0.22), transparent 65%);
  animation: float 28s ease-in-out infinite -14s;
}

.why .section-head { margin-bottom: clamp(56px, 6vw, 80px); }

.why__bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  grid-auto-rows: minmax(280px, auto);
  gap: 16px;
}
.why__cell {
  position: relative;
  padding: 32px 32px 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--rule-light);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform .55s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  cursor: pointer;
  isolation: isolate;
}
.why__cell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(197,139,78,0.18), transparent 60%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.why__cell::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width .6s var(--ease);
}
.why__cell:hover {
  transform: translateY(-6px);
  border-color: var(--rule-light-2);
  background: rgba(255,255,255,0.04);
}
.why__cell:hover::before { opacity: 1; }
.why__cell:hover::after { width: 100%; }
.why__cell:hover h3 { color: var(--accent); }

.why__cell--accent {
  background: linear-gradient(160deg, rgba(197,139,78,0.16), rgba(197,139,78,0.04));
  border-color: rgba(197,139,78,0.25);
}
.why__cell--accent h4 { color: var(--accent-soft); }

.why__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  display: block;
  margin-bottom: 32px;
}
.why__cell h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  transition: color .35s var(--ease);
}
.why__cell p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,242,236,0.65);
  max-width: 36ch;
}
.why__cell-meta {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 500;
}

/* ============ 8. INDUSTRIES ============ */
.industries { padding: var(--pad-y) 0; }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry {
  --mx: 50%; --my: 50%;
  position: relative;
  padding: 40px 36px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  transition: transform .6s var(--ease), border-color .4s var(--ease), box-shadow .6s var(--ease);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}
.industry::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--mx) var(--my), rgba(197,139,78,0.10), transparent 55%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.industry::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.industry:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.industry:hover::before { opacity: 1; }
.industry:hover::after { transform: scaleX(1); }
.industry:hover .industry__icon {
  color: var(--accent);
  transform: rotate(-6deg) scale(1.06);
  border-color: var(--accent);
}
.industry:hover .industry__name { transform: translateX(4px); }

.industry__icon {
  width: 60px; height: 60px;
  border-radius: var(--r-md);
  border: 1px solid var(--rule-2);
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  color: var(--text);
  transition: color .4s var(--ease), transform .5s var(--ease), border-color .4s var(--ease);
  position: relative;
  z-index: 1;
}
.industry__icon svg { width: 28px; height: 28px; }

.industry__no {
  position: absolute;
  top: 40px; right: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  z-index: 1;
}
.industry__name {
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: transform .45s var(--ease);
}
.industry__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.industry__meta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ============ 9. CTA ============ */
.cta {
  padding: clamp(96px, 13vw, 180px) 0;
  background: var(--bone-2);
  border-top: 1px solid var(--rule);
  position: relative;
}
.cta__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(197,139,78,0.14), transparent 60%);
  animation: pulse-glow 8s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%,-50%) scale(1.08); }
}

/* ---- Contact Form ---- */
/* ---- CTA restructure ---- */
.cta__inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.cta__head { margin-bottom: clamp(56px, 6vw, 88px); }
.cta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 100px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 32px 0 0;
}
.cta__body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  border-top: 1px solid var(--rule);
  padding-top: clamp(48px, 5vw, 72px);
}

/* ---- Contact Form — underline style ---- */
.contact-form { width: 100%; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}
.contact-form__group {
  position: relative;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.contact-form__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}
.contact-form__input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-2);
  padding: 0 0 14px;
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.35s var(--ease);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.contact-form__input::placeholder { color: var(--muted); opacity: 0.45; }
.contact-form__input:focus { border-bottom-color: transparent; }
.contact-form__input.is-error + .contact-form__line { background: #b0271c; transform: scaleX(1); }
.contact-form__textarea {
  resize: none;
  min-height: 120px;
  line-height: 1.7;
}

/* Animated accent underline */
.contact-form__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
  pointer-events: none;
}
.contact-form__group:focus-within .contact-form__line { transform: scaleX(1); }

.contact-form__footer { margin-top: 8px; }
.contact-form__status {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  min-height: 22px;
}
.contact-form__status.is-success { color: #2e7d57; }
.contact-form__status.is-error   { color: #b0271c; }

/* ---- CTA aside (right column) ---- */
.cta__aside { padding-top: 8px; }
.cta__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.cta__trust {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta__trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}
.cta__trust-icon {
  flex-shrink: 0;
  color: var(--accent);
}
.cta__email {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--rule-2);
  padding-bottom: 4px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.cta__email:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ---- CTA responsive ---- */
@media (max-width: 860px) {
  .cta__body { grid-template-columns: 1fr; gap: 56px; }
  .cta__aside { border-top: 1px solid var(--rule); padding-top: 40px; }
}
@media (max-width: 560px) {
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 560px) {
  .contact-form__footer .btn { width: 100%; justify-content: center; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 68px 0 24px;
  position: relative;
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--rule-light);
}
.footer__brand {
  display: flex;
  flex-direction: column;
}
.footer__logo-img { height: 80px; width: auto; display: block; margin-bottom: 18px; object-fit: contain; }
.footer__name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}
.footer__name-main {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bone);
  line-height: 1.1;
}
.footer__name-sub {
  font-size: 9px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.45);
  line-height: 1;
}
.footer__tag {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  font-family: var(--serif);
  line-height: 1.55;
  margin: 0 0 20px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.footer__social-link {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(245,242,236,0.12);
  color: rgba(245,242,236,0.5);
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.footer__social-link:hover {
  color: var(--bone);
  border-color: rgba(245,242,236,0.28);
  background: rgba(245,242,236,0.06);
}
.footer__brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap .25s var(--ease);
}
.footer__brand-cta:hover { gap: 10px; }
.footer__col {
  display: flex;
  flex-direction: column;
}
.footer__col .kicker {
  color: rgba(245,242,236,0.82);
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: rgba(245,242,236,0.6);
  transition: color .25s var(--ease), padding .35s var(--ease);
  position: relative;
  line-height: 1.5;
}
.footer__col a::before {
  content: '→';
  position: absolute;
  left: -18px;
  opacity: 0;
  color: var(--accent);
  transition: opacity .3s var(--ease), left .3s var(--ease);
}
.footer__col a:hover { color: var(--accent); padding-left: 4px; }
.footer__col a:hover::before { opacity: 1; left: -16px; }

.footer__wordmark {
  font-family: var(--serif);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-align: center;
  background: linear-gradient(180deg, rgba(245,242,236,0.07), rgba(245,242,236,0.01));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 32px 0 16px;
  user-select: none;
  pointer-events: none;
}

.footer__bar {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(245,242,236,0.55);
  letter-spacing: 0.04em;
  padding-top: 20px;
  border-top: 1px solid var(--rule-light);
}
.footer__links { display: flex; gap: 24px; align-items: center; }
.footer__links a { transition: color .25s var(--ease); }
.footer__links a:hover { color: var(--accent); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  [data-reveal-words] .word > span { transform: none !important; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero__rail { display: none; }
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; }

  .section-head--split { grid-template-columns: 1fr; gap: 28px; }

  .hero { padding: 130px 0 80px; min-height: auto; }

  .hero__columns { grid-template-columns: 1fr; gap: 32px; align-items: flex-start; }
  .hero__actions { justify-content: flex-start; }
  .hero__foot { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }

  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust__metric:nth-child(3) { border-left: 0; padding-left: 0; }
  .trust__logo { font-size: 16px; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__head { position: static; }
  .about__copy { padding-top: 0; }

  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }

  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process__step { padding-right: 24px; }
  .process__step:nth-child(2) { border-right: 0; }
  .process__step:nth-child(1), .process__step:nth-child(2) { border-bottom: 1px solid var(--rule); padding-bottom: 36px; }
  .process__step:nth-child(3), .process__step:nth-child(4) { padding-top: 36px; }

  .why__bento { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }

  .industries__grid { grid-template-columns: 1fr; }
  .industry { min-height: auto; }

  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bar { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 560px) {
  .hero__title { font-size: clamp(44px, 13vw, 72px); }
  .btn { width: 100%; justify-content: center; }
  .hero__actions, .cta__actions { flex-direction: column; align-items: stretch; }
  .why__bento { grid-template-columns: 1fr; }
}

/* ============ MOBILE NAV ============ */
.nav__links.is-open {
  display: flex !important;
  position: absolute;
  top: 100%; left: 0; right: 0;
  flex-direction: column;
  gap: 0;
  padding: 16px var(--pad-x) 28px;
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
}
.nav__links.is-open > a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--rule); }


/* ---------- FAQ section ---------- */
.faq {
  position: relative;
  padding: var(--pad-y) 0;
  background: linear-gradient(180deg, var(--bone) 0%, var(--bone-2) 100%);
  border-top: 1px solid var(--rule);
}
.faq__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.6fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq__head {
  position: sticky;
  top: 120px;
}
.faq__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__item > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: padding .35s var(--ease);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary:hover { padding-left: 8px; }
.faq__q {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: inline-block;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--text);
  transition: transform .4s var(--ease), background .35s var(--ease);
}
.faq__icon::before {
  top: 50%;
  left: 0;
  width: 18px;
  height: 1px;
  transform: translateY(-50%);
}
.faq__icon::after {
  left: 50%;
  top: 0;
  width: 1px;
  height: 18px;
  transform: translateX(-50%);
}
.faq__item[open] .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  background: var(--accent);
}
.faq__item[open] .faq__icon::before {
  background: var(--accent);
}
.faq__item[open] > summary .faq__q { color: var(--accent-deep); }
.faq__a {
  padding: 0 4px 32px;
  max-width: 64ch;
}
.faq__a p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

@media (max-width: 900px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq__head {
    position: static;
  }
  .faq__q {
    font-size: 19px;
  }
}
