/* ============================================================
   GraFik Arena — Site styles
   Base resets, brand helpers, components & page sections.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--ga-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ga-ink); }
::-webkit-scrollbar-thumb { background: var(--ga-charcoal-2); border-radius: 999px; }
::selection { background: var(--ga-gold); color: var(--ga-ink); }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: var(--lh-snug);
}

.app { background: var(--ga-paper); min-height: 100vh; font-family: var(--font-body); }

.container { max-width: var(--container); margin: 0 auto; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; }

/* --- Brand helpers ------------------------------------------ */
.ga-gold-text {
  background: var(--ga-gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.ga-rule {
  display: block; height: 4px; width: 96px; border: 0;
  background: var(--ga-gradient-gold); border-radius: var(--radius-pill);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: .22em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 30px; height: 2px; border-radius: 999px; background: currentColor;
}
.eyebrow.gold { color: var(--ga-gold); }
.eyebrow.gold-deep { color: var(--ga-gold-deep); }

.section-title {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 42px); line-height: 1.06; letter-spacing: -.01em;
  color: var(--ga-ink); margin: 0;
}
.lead { color: var(--text-body); font-size: 16px; line-height: 1.6; margin: 0; }

/* --- Scroll reveal ------------------------------------------ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ============================================================
   Button (mirrors DS Button.jsx)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; line-height: 1; border-radius: var(--radius-pill);
  cursor: pointer; white-space: nowrap; border: 1.5px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.btn:active { transform: scale(.96); }
.btn.sm { font-size: 13px; padding: 8px 16px; gap: 6px; }
.btn.md { font-size: 14px; padding: 12px 24px; gap: 8px; }
.btn.lg { font-size: 15px; padding: 16px 34px; gap: 10px; }
.btn.full { display: flex; width: 100%; }

.btn.primary { background: var(--ga-gold); color: var(--ga-ink); border-color: var(--ga-gold); }
.btn.primary:hover { background: var(--ga-gold-deep); border-color: var(--ga-gold-deep); box-shadow: var(--shadow-gold); }
.btn.dark { background: var(--ga-ink); color: var(--ga-white); border-color: var(--ga-ink); }
.btn.dark:hover { background: var(--ga-charcoal); box-shadow: var(--shadow-sm); }
.btn.outline { background: transparent; color: var(--ga-ink); border-color: var(--ga-ink); }
.btn.outline:hover { background: var(--ga-grey-100); box-shadow: var(--shadow-sm); }
.btn .arrow { font-size: 18px; line-height: 1; transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  letter-spacing: .08em; text-transform: uppercase; padding-bottom: 4px;
  border-bottom: 2px solid var(--ga-gold); width: fit-content;
}
.link-arrow .arrow { font-size: 16px; transition: transform var(--dur-base) var(--ease-out); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Header / Nav
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  background: rgba(18,18,18,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; padding: 0 var(--gutter); height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; background: none; border: 0; padding: 0; }
.brand img { height: 30px; width: auto; }
.brand .wordmark {
  font-family: var(--font-display); font-weight: 200; letter-spacing: .34em;
  text-transform: uppercase; color: #fff; font-size: 15px;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  position: relative; cursor: pointer; font-family: var(--font-display);
  font-weight: 500; font-size: 14px; letter-spacing: .04em;
  color: rgba(255,255,255,.82); padding: 6px 0; transition: color var(--dur-fast) var(--ease-out);
}
.nav a:hover { color: #fff; }
.nav a .underline {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  border-radius: 999px; background: var(--ga-gradient-gold);
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur-base) var(--ease-out);
}
.nav a.active .underline, .nav a:hover .underline { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.lang { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: .08em; }
.lang button { background: none; border: 0; cursor: pointer; color: #fff; padding: 0 0 3px; position: relative; font: inherit; }
.lang .sep { color: rgba(255,255,255,.3); }
.lang button .u { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 999px; background: var(--ga-gold); opacity: 0; }
.lang button.on .u { opacity: 1; }

.burger {
  display: none; align-items: center; justify-content: center; width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 10px; background: transparent; color: #fff; cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95; background: var(--ga-ink);
  display: flex; flex-direction: column; padding: 20px var(--gutter) 40px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu .mm-top { display: flex; align-items: center; justify-content: space-between; height: 52px; }
.mobile-menu .mm-top .wordmark { font-family: var(--font-display); font-weight: 200; letter-spacing: .34em; text-transform: uppercase; color: #fff; font-size: 15px; }
.mobile-menu .mm-close { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; background: transparent; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 32px; }
.mobile-menu nav a { cursor: pointer; font-family: var(--font-display); font-weight: 500; font-size: 30px; letter-spacing: .01em; color: #fff; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu .mm-lang { display: flex; align-items: center; gap: 14px; margin-top: 28px; font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: .1em; }
.mobile-menu .mm-lang button { background: none; border: 0; color: #fff; cursor: pointer; font: inherit; }
.mobile-menu .mm-contact { margin-top: auto; color: rgba(255,255,255,.5); font-size: 13px; letter-spacing: .02em; }

/* ============================================================
   Sections — shared
   ============================================================ */
.page { display: none; }
.page.active { display: block; animation: pageFade .5s var(--ease-out); }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

.sec { padding: clamp(72px, 9vw, 112px) var(--gutter); }
.sec-dark { background: var(--ga-gradient-spotlight); color: #fff; position: relative; overflow: hidden; }
.sec-paper { background: var(--ga-paper); }
.sec-white { background: var(--ga-white); }
.sec-ink { background: var(--ga-ink); color: #fff; }

.dot-grid {
  position: absolute; inset: 0; opacity: .6; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.watermark { position: absolute; pointer-events: none; }

/* --- Hero --------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; background: var(--ga-gradient-spotlight); color: #fff;
  padding: clamp(150px,19vh,215px) var(--gutter) clamp(88px,11vw,128px);
}
.hero .wm { right: -90px; top: 50%; transform: translateY(-50%); width: min(560px,52vw); opacity: .06; }
.hero-inner { position: relative; max-width: 1120px; margin: 0 auto; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  line-height: 1.02; letter-spacing: -.01em; font-size: clamp(42px,6.6vw,86px);
  margin: 0; max-width: 15ch; color: #fff;
}
.hero p.sub { max-width: 600px; font-size: clamp(16px,1.4vw,19px); line-height: 1.65; color: rgba(255,255,255,.74); margin: 0; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero .ghost-cta {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px;
  border: 1.5px solid rgba(255,255,255,.34); border-radius: 999px; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer; transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.hero .ghost-cta:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.hero .foot { margin-top: 42px; font-family: var(--font-display); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); }

.page-hero {
  position: relative; overflow: hidden; background: var(--ga-gradient-spotlight); color: #fff;
  padding: clamp(140px,16vh,184px) var(--gutter) clamp(56px,7vw,84px);
}
.page-hero .wm { right: -70px; top: 40%; width: 380px; opacity: .06; }
.page-hero-inner { position: relative; max-width: 1120px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  line-height: 1.04; letter-spacing: -.01em; font-size: clamp(38px,5.4vw,68px); margin: 0; max-width: 16ch; color: #fff;
}
.page-hero p.sub { max-width: 620px; font-size: 18px; line-height: 1.65; color: rgba(255,255,255,.72); margin: 24px 0 0; }

/* --- Trust band --------------------------------------------- */
.trust { background: var(--ga-ink); border-top: 1px solid rgba(255,255,255,.07); padding: 36px var(--gutter); }
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.trust .label { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.trust .logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(28px,5vw,56px); }
.trust .logos span {
  font-family: var(--font-display); font-weight: 300; font-size: 17px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.55); transition: color var(--dur-base) var(--ease-out);
}
.trust .logos span:hover { color: var(--ga-gold); }

/* --- Section header row ------------------------------------- */
.sec-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; }
.sec-head h2 { max-width: 18ch; }

/* --- Service cards (home grid) ------------------------------ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.svc-card {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start;
  padding: 28px; border-radius: var(--radius-md); background: var(--ga-card);
  border: 1px solid transparent; box-shadow: var(--shadow-xs);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc-card .num { font-family: var(--font-display); font-weight: 200; font-size: 44px; line-height: .9; }
.svc-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; margin: 0 0 8px; color: var(--text-primary); letter-spacing: .01em; }
.svc-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-body); }

/* --- Steps (approach home) ---------------------------------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 16px; }
.step-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 28px; min-height: 190px; transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out); }
.step-card:hover { border-color: rgba(230,179,62,.4); background: rgba(255,255,255,.05); }
.step-card .num { font-family: var(--font-display); font-weight: 200; font-size: 42px; line-height: .9; margin-bottom: 16px; }
.step-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff; margin: 0 0 8px; }
.step-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.62); }

/* --- Work / project tiles ----------------------------------- */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.work-tile {
  position: relative; overflow: hidden; border-radius: 16px; min-height: 330px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  background: var(--ga-gradient-spotlight); border: 1px solid var(--ga-charcoal-2);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.work-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.work-tile .wm { right: -40px; top: -30px; width: 170px; opacity: .08; }
.work-tile .ring { position: absolute; right: -70px; top: -70px; width: 200px; height: 200px; border: 1.5px solid rgba(230,179,62,.5); border-radius: 50%; pointer-events: none; }
.work-tile .cat { align-self: flex-start; font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ga-ink); background: var(--ga-gold); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.work-tile h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: #fff; margin: 0 0 8px; line-height: 1.2; }
.work-tile p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.6); }

/* --- Proof / quote ------------------------------------------ */
.proof { position: relative; overflow: hidden; background: var(--ga-ink); color: #fff; padding: clamp(80px,10vw,124px) var(--gutter); }
.proof-inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.proof .mark { font-family: var(--font-display); font-weight: 200; font-size: 80px; line-height: .6; color: var(--ga-gold); height: 42px; }
.proof blockquote { font-family: var(--font-display); font-weight: 300; font-size: clamp(24px,3.2vw,38px); line-height: 1.32; color: #fff; margin: 0 0 30px; letter-spacing: -.01em; }
.proof .bar { display: inline-block; width: 60px; height: 2px; background: var(--ga-gradient-gold); border-radius: 999px; margin-bottom: 20px; }
.proof .author { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .04em; color: #fff; }
.proof .role { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* --- CTA band ----------------------------------------------- */
.cta-band { background: var(--ga-gradient-gold); padding: clamp(64px,8vw,98px) var(--gutter); }
.cta-band-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(28px,4vw,46px); line-height: 1.05; letter-spacing: -.01em; color: var(--ga-ink); margin: 0 0 16px; }
.cta-band p { color: rgba(20,20,20,.78); font-size: 17px; line-height: 1.6; margin: 0 auto 30px; max-width: 560px; }

/* --- Services page rows ------------------------------------- */
.svc-rows { max-width: 1100px; margin: 0 auto; }
.svc-row { display: grid; grid-template-columns: minmax(220px,300px) 1fr; gap: clamp(24px,4vw,56px); padding: clamp(34px,4vw,52px) 0; border-top: 1px solid var(--ga-line); align-items: start; }
.svc-row .num { font-family: var(--font-display); font-weight: 200; font-size: 64px; line-height: .9; margin-bottom: 14px; }
.svc-row h2 { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1.12; color: var(--ga-ink); margin: 0; }
.svc-row .desc { font-size: 16.5px; line-height: 1.7; color: var(--text-body); margin: 0 0 22px; max-width: 60ch; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: .04em; color: var(--ga-grey-700); background: var(--ga-white); border: 1px solid var(--ga-line); padding: 8px 16px; border-radius: 999px; }

/* --- Approach page steps ------------------------------------ */
.approach-steps { max-width: 980px; margin: 0 auto; }
.approach-step { display: grid; grid-template-columns: 160px 1fr; gap: clamp(20px,4vw,48px); padding: clamp(28px,3.5vw,44px) 0; border-top: 1px solid var(--ga-line); align-items: start; }
.approach-step .num { font-family: var(--font-display); font-weight: 200; font-size: clamp(56px,7vw,92px); line-height: .85; }
.approach-step h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px,2.6vw,30px); color: var(--ga-ink); margin: 0 0 12px; }
.approach-step p { font-size: 16.5px; line-height: 1.7; color: var(--text-body); margin: 0; max-width: 62ch; }

.gold-num { background: var(--ga-gradient-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* --- FAQ ---------------------------------------------------- */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.12); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: clamp(17px,2vw,21px); color: #fff; }
.faq-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--ga-gold); color: var(--ga-gold); display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; transition: transform var(--dur-base) var(--ease-out); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease-out); }
.faq-a > div { padding: 0 0 24px; max-width: 720px; color: rgba(255,255,255,.66); font-size: 16px; line-height: 1.7; }

/* --- About -------------------------------------------------- */
.about-intro { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px,5vw,72px); align-items: center; }
.about-intro .lead-p { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px,2.4vw,26px); line-height: 1.45; color: var(--ga-ink); margin: 0 0 24px; }
.about-intro .p2 { font-size: 16.5px; line-height: 1.7; color: var(--text-body); margin: 0; }
.about-visual { position: relative; overflow: hidden; border-radius: 18px; min-height: 360px; background: var(--ga-gradient-spotlight); display: flex; align-items: center; justify-content: center; border: 1px solid var(--ga-charcoal-2); }
.about-visual .ring { position: absolute; right: -80px; top: -80px; width: 240px; height: 240px; border: 1.5px solid rgba(230,179,62,.45); border-radius: 50%; }
.about-visual img { width: 160px; opacity: .92; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 18px; }
.value-card { background: var(--ga-paper); border: 1px solid var(--ga-line); border-radius: 14px; padding: 30px; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.value-card .vbar { width: 42px; height: 3px; background: var(--ga-gradient-gold); border-radius: 999px; margin-bottom: 18px; }
.value-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--ga-ink); margin: 0 0 10px; }
.value-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-body); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.team-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 28px; text-align: center; transition: border-color var(--dur-base) var(--ease-out); }
.team-card:hover { border-color: rgba(230,179,62,.4); }
.team-card .avatar { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 18px; background: var(--ga-ink); border: 1.5px solid var(--ga-gold); display: flex; align-items: center; justify-content: center; }
.team-card .avatar img { width: 38px; opacity: .85; }
.team-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; margin: 0 0 6px; }
.team-card p { margin: 0; font-size: 13.5px; letter-spacing: .04em; color: var(--ga-gold); }

.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.office-card { background: var(--ga-white); border: 1px solid var(--ga-line); border-radius: 14px; padding: 32px; }
.office-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--ga-ink); margin: 0 0 14px; display: flex; align-items: center; gap: 10px; }
.office-card h3 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ga-gold); }
.office-card .addr { margin: 0 0 8px; font-size: 15.5px; line-height: 1.6; color: var(--text-body); }
.office-card .phone { margin: 0; font-size: 15px; color: var(--ga-grey-700); font-family: var(--font-mono); }

/* --- Contact ------------------------------------------------ */
.contact-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(32px,5vw,64px); align-items: start; }
.form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field label, .field > span { display: block; font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ga-grey-500); margin-bottom: 6px; }
.field .req { color: var(--ga-gold); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ga-ink);
  background: var(--ga-white); border: 1.5px solid var(--ga-line); border-radius: var(--radius-sm);
  padding: 12px 14px; outline: none; box-sizing: border-box; transition: border-color var(--dur-fast) var(--ease-out);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23757575' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ga-gold); }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--ga-danger); }

.contact-success { background: var(--ga-white); border: 1px solid var(--ga-line); border-radius: 18px; padding: 48px 40px; text-align: center; box-shadow: var(--shadow-sm); }
.contact-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--ga-gradient-gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.contact-success h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--ga-ink); margin: 0 0 10px; }
.contact-success p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--text-body); }

.contact-info { background: var(--ga-gradient-spotlight); color: #fff; border-radius: 18px; padding: clamp(28px,3vw,40px); border: 1px solid var(--ga-charcoal-2); }
.contact-info h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: #fff; margin: 0 0 26px; }
.contact-info .blocks { display: flex; flex-direction: column; gap: 22px; }
.contact-info .ci-label { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ga-gold); margin-bottom: 6px; }
.contact-info a { color: #fff; font-size: 16px; }
.contact-info a:hover { color: var(--ga-gold); }
.contact-info .mono { color: rgba(255,255,255,.85); font-size: 15px; font-family: var(--font-mono); line-height: 1.8; }
.contact-info .plain { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.7; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ga-ink); color: #fff; border-top: 1px solid rgba(255,255,255,.08); padding: clamp(56px,7vw,84px) var(--gutter) 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 40px; }
.footer .f-brand { min-width: 220px; }
.footer .f-brand .row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer .f-brand img { height: 30px; }
.footer .f-brand .wordmark { font-family: var(--font-display); font-weight: 200; letter-spacing: .32em; text-transform: uppercase; color: #fff; font-size: 15px; }
.footer .f-brand p { max-width: 300px; font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,.55); margin: 0 0 18px; }
.footer .f-lang { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: .08em; }
.footer .f-lang button { background: none; border: 0; cursor: pointer; color: rgba(255,255,255,.55); font: inherit; }
.footer .f-lang button.on { color: #fff; }
.footer .f-title { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ga-gold); margin-bottom: 18px; }
.footer .f-list { display: flex; flex-direction: column; gap: 12px; }
.footer .f-list a, .footer .f-list span { cursor: pointer; color: rgba(255,255,255,.7); font-size: 14.5px; transition: color var(--dur-fast) var(--ease-out); }
.footer .f-list a:hover { color: var(--ga-gold); }
.footer .f-list .mono { font-family: var(--font-mono); cursor: default; }
.footer .divider { height: 1px; background: rgba(255,255,255,.08); margin: 40px 0 22px; }
.footer .f-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; color: rgba(255,255,255,.45); }
.footer .f-bottom .made { font-family: var(--font-display); letter-spacing: .16em; text-transform: uppercase; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 880px) {
  .nav, .header-actions { display: none; }
  .burger { display: flex; }
}
@media (max-width: 760px) {
  .svc-row, .approach-step, .about-intro, .offices-grid, .contact-grid, .form-row { grid-template-columns: 1fr !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
