:root {
  --bg: #07101d;
  --bg-deep: #040a12;
  --panel: rgba(13, 25, 39, 0.78);
  --panel-strong: #0c1827;
  --panel-light: #f4f0e8;
  --text: #f5f1e8;
  --muted: #aab3bf;
  --ink: #101a27;
  --gold: #c69a62;
  --gold-bright: #dfb77f;
  --line: rgba(204, 169, 116, 0.24);
  --line-white: rgba(255,255,255,.12);
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px rgba(0,0,0,.35);
  --header-h: 82px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg-deep); }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg-deep);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: rgba(198,154,98,.35); color: #fff; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: #fff;
  color: #000;
  border-radius: 8px;
}
.skip-link:focus { transform: none; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.025em; }
h2 { font-size: clamp(2.3rem, 4vw, 5rem); line-height: 1.02; }
h3 { line-height: 1.1; }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .75rem;
  font-weight: 760;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.button::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-102%);
  background: linear-gradient(95deg, transparent, rgba(255,255,255,.24), transparent);
  transition: transform .55s ease;
}
.button:hover::before { transform: translateX(102%); }
.button:hover { transform: translateY(-2px); }
.button--gold {
  color: #15100b;
  background: linear-gradient(135deg, var(--gold-bright), #a87540);
  box-shadow: 0 15px 45px rgba(198,154,98,.18);
}
.button--gold:hover { box-shadow: 0 20px 50px rgba(198,154,98,.3); }
.button--glass { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.button--compact { min-height: 44px; padding: 0 18px; gap: 12px; font-size: .68rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold);
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.text-link b { transition: transform .25s ease; }
.text-link:hover b { transform: translateX(5px); }

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 210px; }
.brand-mark { width: 34px; height: 34px; color: var(--gold); }
.brand-mark svg { width: 100%; height: 100%; fill: currentColor; stroke: currentColor; stroke-width: 1.2; }
.brand__text { display: grid; line-height: 1; }
.brand__text small { font-size: .58rem; letter-spacing: .25em; }
.brand__text strong { margin-top: 5px; font-family: var(--serif); font-size: 1.15rem; letter-spacing: .14em; font-weight: 500; }
.brand-mark--large { width: 58px; height: 58px; margin: 0 auto 18px; }
.brand-mark--loader { width: 68px; height: 68px; margin: 0 auto 18px; }
.brand-mark--folder { width: 46px; height: 46px; }

.language-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(198,154,98,.12), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(60,93,126,.2), transparent 38%),
    #060d17;
  overflow: hidden;
  transition: opacity .55s ease, visibility .55s ease;
}
.language-gate.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.language-gate__orb { position: absolute; border-radius: 50%; filter: blur(18px); opacity: .7; }
.language-gate__orb--one { width: 420px; height: 420px; top: -180px; right: -100px; background: rgba(198,154,98,.1); }
.language-gate__orb--two { width: 520px; height: 520px; left: -220px; bottom: -220px; background: rgba(45,78,112,.2); }
.language-gate__panel {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--line-white);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(17,30,46,.9), rgba(7,16,29,.92));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  text-align: center;
}
.language-gate__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(224,183,127,.55), transparent 30%, transparent 70%, rgba(255,255,255,.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.language-gate h1 { margin-bottom: 8px; font-size: clamp(2.6rem, 7vw, 4.7rem); }
.language-gate__lead { color: var(--muted); }
.language-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.language-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid var(--line-white);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255,255,255,.03);
  text-align: left;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.language-card:hover { transform: translateY(-3px); border-color: rgba(198,154,98,.6); background: rgba(198,154,98,.07); }
.language-card__code { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 12px; color: var(--gold-bright); font-weight: 800; }
.language-card strong, .language-card small { display: block; }
.language-card small { margin-top: 3px; color: var(--muted); }
.language-gate__note { margin: 24px 0 0; color: #738091; font-size: .82rem; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: #050c15;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
}
.loader.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.loader__mesh { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(198,154,98,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(198,154,98,.08) 1px, transparent 1px); background-size: 52px 52px; mask-image: radial-gradient(circle, #000 15%, transparent 72%); }
.loader__content { position: relative; width: min(390px, 80vw); text-align: center; }
.loader__wordmark { display: grid; gap: 5px; }
.loader__wordmark span { font-size: .68rem; letter-spacing: .42em; }
.loader__wordmark strong { font-family: var(--serif); font-size: 2rem; letter-spacing: .18em; font-weight: 500; }
.loader__line { height: 1px; margin: 30px 0 12px; background: rgba(255,255,255,.1); overflow: hidden; }
.loader__line span { display: block; width: 0; height: 100%; background: var(--gold); box-shadow: 0 0 14px var(--gold); }
.loader.is-running .loader__line span { animation: loadbar var(--loader-duration, 3.6s) cubic-bezier(.65,0,.35,1) forwards; }
.loader__status { display: flex; justify-content: center; gap: 4px; color: #7e8997; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }
.loader__status b { margin-left: auto; color: var(--gold-bright); }
.loader__dots { width: 20px; text-align: left; }
@keyframes loadbar { to { width: 100%; } }

.page-shell { opacity: 0; transform: translateY(12px); transition: opacity .7s ease, transform .7s ease; }
.page-shell.is-ready { opacity: 1; transform: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header.is-scrolled { height: 68px; background: rgba(5,12,21,.82); box-shadow: 0 14px 40px rgba(0,0,0,.24); backdrop-filter: blur(20px); }
.site-header__inner { width: min(1560px, calc(100% - 64px)); height: 100%; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 38px); }
.main-nav a { position: relative; color: #dbe1e8; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--gold); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.language-switcher { position: relative; }
.language-switcher__current { display: flex; align-items: center; gap: 7px; border: 0; background: none; cursor: pointer; font-size: .74rem; letter-spacing: .12em; }
.language-switcher__menu { position: absolute; top: calc(100% + 14px); right: 0; width: 170px; padding: 8px; border: 1px solid var(--line-white); border-radius: 14px; background: rgba(8,17,29,.96); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .25s ease; }
.language-switcher.is-open .language-switcher__menu { opacity: 1; visibility: visible; transform: none; }
.language-switcher__menu button { display: flex; width: 100%; align-items: center; gap: 12px; padding: 10px; border: 0; border-radius: 9px; background: none; cursor: pointer; text-align: left; }
.language-switcher__menu button:hover { background: rgba(255,255,255,.06); }
.language-switcher__menu span { color: var(--muted); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-white); border-radius: 12px; background: rgba(255,255,255,.03); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 1px; margin: 5px auto; background: #fff; transition: transform .25s ease; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 54px) 0 0;
  background:
    linear-gradient(90deg, rgba(5,13,23,.99) 0%, rgba(5,13,23,.96) 29%, rgba(6,15,26,.58) 57%, rgba(6,14,24,.86) 100%),
    radial-gradient(circle at 72% 26%, rgba(128,157,179,.13), transparent 32%),
    #07101d;
  isolation: isolate;
  overflow: hidden;
}
.hero::after { content: ''; position: absolute; inset: auto 0 0; height: 1px; background: var(--line); }
.hero__ambient { position: absolute; z-index: -1; border-radius: 50%; filter: blur(80px); opacity: .34; }
.hero__ambient--one { width: 520px; height: 520px; top: -250px; right: 10%; background: rgba(74,110,144,.2); }
.hero__ambient--two { width: 460px; height: 460px; bottom: -260px; left: 20%; background: rgba(198,154,98,.13); }
.hero__lines { position: absolute; inset: 0; z-index: -1; opacity: .3; background: radial-gradient(circle at 32% 40%, transparent 0 22%, rgba(198,154,98,.12) 22.1% 22.2%, transparent 22.3% 34%, rgba(198,154,98,.08) 34.1% 34.2%, transparent 34.3%); }
.hero__inner { position: relative; width: min(1500px, calc(100% - 88px)); min-height: calc(100vh - var(--header-h) - 54px); margin: 0 auto; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.25fr); grid-template-rows: 1fr auto; gap: 30px 28px; align-items: center; }
.hero__copy { position: relative; z-index: 4; padding-left: 58px; max-width: 620px; }
.hero__copy h1 { margin-bottom: 22px; font-size: clamp(4rem, 6.6vw, 7.3rem); line-height: .93; }
.hero__copy h1 span, .hero__copy h1 em { display: block; font-style: normal; }
.hero__copy h1 em { color: var(--gold-bright); }
.hero__lead { max-width: 620px; color: #d4d9df; font-size: clamp(1rem, 1.35vw, 1.22rem); }
.hero__actions { display: flex; align-items: center; gap: 34px; margin-top: 34px; }
.hero__scroll-rail { position: absolute; left: 0; top: 10%; bottom: 24%; display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--gold); }
.hero__scroll-rail span { width: 1px; flex: 1; background: linear-gradient(var(--gold), rgba(198,154,98,.08)); }
.hero__scroll-rail small { writing-mode: vertical-rl; transform: rotate(180deg); font-size: .64rem; letter-spacing: .2em; }
.hero__scroll-rail b { font-weight: 400; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(5px); } }

.hero-visual { position: absolute; inset: 2% -6% 16% 40%; z-index: 1; perspective: 1200px; pointer-events: none; }
.desk-glow { position: absolute; inset: 8% 4% 2% 6%; border-radius: 50%; background: radial-gradient(ellipse, rgba(96,129,157,.21), rgba(5,12,21,.02) 62%); filter: blur(20px); }
.paper-stack { position: absolute; top: 4%; right: 2%; width: 35%; height: 30%; transform: rotate(6deg) skewX(-8deg); }
.paper-stack i { position: absolute; inset: 0; border-radius: 4px; background: linear-gradient(145deg, #b6b0a7, #716f6d); box-shadow: 0 14px 30px rgba(0,0,0,.42); }
.paper-stack i:nth-child(2) { transform: translate(-10px, 10px); opacity: .65; }
.paper-stack i:nth-child(3) { transform: translate(-20px, 20px); opacity: .4; }
.folder { position: absolute; width: 72%; height: 58%; top: 32%; left: 17%; border-radius: 10px 10px 28px 16px; background: linear-gradient(145deg, #1a2735, #07111c 70%); box-shadow: -26px 30px 70px rgba(0,0,0,.6), inset 0 1px rgba(255,255,255,.09); transform: rotateX(63deg) rotateZ(-4deg); transform-style: preserve-3d; overflow: hidden; }
.folder::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 0 34%, rgba(255,255,255,.04) 40%, transparent 48%); }
.folder__grain { position: absolute; inset: 0; opacity: .12; background-image: repeating-linear-gradient(93deg, transparent 0 4px, rgba(255,255,255,.08) 5px, transparent 6px); }
.folder__logo { position: absolute; right: 18%; bottom: 24%; display: grid; justify-items: center; color: var(--gold); transform: translateZ(30px) rotateZ(1deg); text-shadow: 0 2px 12px rgba(198,154,98,.23); }
.folder__logo small { margin-top: 5px; font-size: .65rem; letter-spacing: .28em; }
.folder__logo strong { margin-top: 3px; font-family: var(--serif); font-size: 2rem; letter-spacing: .13em; font-weight: 500; }
.pen { position: absolute; width: 52%; height: 28px; left: 20%; top: 38%; transform: rotate(-6deg); filter: drop-shadow(0 14px 13px rgba(0,0,0,.55)); }
.pen span { position: absolute; inset: 4px 10% 4px 4%; border-radius: 20px; background: linear-gradient(#172537 0%, #03070b 45%, #1d2a38 68%, #02060a); box-shadow: inset 0 1px 2px rgba(255,255,255,.18); }
.pen b { position: absolute; right: 6%; top: 3px; width: 13%; height: 22px; border-radius: 0 18px 18px 0; background: linear-gradient(90deg, #c59655, #e3bd84 50%, #6d4927); }
.pen i { position: absolute; left: 0; top: 8px; width: 9%; height: 12px; clip-path: polygon(100% 0, 100% 100%, 0 50%); background: linear-gradient(90deg, #8a8f95, #e3e6e7); }
.glass { position: absolute; width: 90px; height: 100px; top: 2%; left: 42%; border-radius: 10px 10px 24px 24px; border: 1px solid rgba(255,255,255,.2); background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.14), rgba(255,255,255,.02)); box-shadow: 0 16px 40px rgba(0,0,0,.32); filter: blur(.3px); }
.glass span { position: absolute; left: 8px; right: 8px; bottom: 8px; height: 32%; border-radius: 0 0 16px 16px; background: linear-gradient(rgba(178,120,62,.2), rgba(109,66,28,.58)); }

.contact-float { position: absolute; z-index: 5; top: 18%; right: 0; width: 310px; padding: 26px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: linear-gradient(145deg, rgba(15,28,43,.9), rgba(8,17,29,.76)); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.contact-float__title { color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-float a { display: grid; grid-template-columns: 26px 1fr; align-items: center; gap: 5px; padding: 8px 0; color: #d7dde4; font-size: .82rem; }
.contact-float a span { color: var(--gold); }
.contact-float a b { overflow-wrap: anywhere; font-weight: 500; }
.contact-float__hours { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-white); }
.contact-float__hours p { margin-bottom: 10px; color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-float__hours div { display: flex; justify-content: space-between; gap: 10px; }
.contact-float__hours strong { font-weight: 500; }
.contact-float__hours small { display: block; margin-top: 3px; color: var(--muted); text-align: right; }

.hero-cards { position: relative; z-index: 5; grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); padding-left: 58px; padding-right: 16%; }
.hero-card { position: relative; display: grid; grid-template-columns: auto 1fr; grid-template-rows: 1fr auto; gap: 15px; min-height: 210px; padding: 28px; border: 1px solid var(--line-white); border-right: 0; background: linear-gradient(155deg, rgba(20,34,50,.82), rgba(8,17,29,.76)); backdrop-filter: blur(13px); transform-style: preserve-3d; transition: border-color .25s ease, background .25s ease; }
.hero-card:first-child { border-radius: 14px 0 0 0; }
.hero-card:last-child { border-right: 1px solid var(--line-white); border-radius: 0 14px 0 0; }
.hero-card:hover { border-color: rgba(198,154,98,.5); background: linear-gradient(155deg, rgba(30,47,67,.92), rgba(10,20,33,.86)); }
.hero-card .icon-chip { margin-top: 1px; }
.hero-card small { display: block; margin-bottom: 13px; color: var(--gold-bright); text-transform: uppercase; letter-spacing: .12em; font-size: .69rem; font-weight: 750; }
.hero-card p { margin: 0; color: #c4cbd3; font-size: .84rem; }
.hero-card > b { grid-column: 2; align-self: end; color: #e2c091; font-size: .69rem; letter-spacing: .12em; text-transform: uppercase; }
.icon-chip { display: inline-grid; place-items: center; width: 43px; height: 43px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-style: normal; }

.trust-strip { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); align-items: stretch; background: linear-gradient(90deg, #f6f1e8 0 63%, #0a1522 63%); color: var(--ink); }
.trust-strip__intro, .stat { min-height: 300px; padding: 56px 38px; border-right: 1px solid rgba(16,26,39,.11); }
.trust-strip__intro { padding-left: max(6vw, calc((100vw - 1500px)/2 + 40px)); }
.trust-strip__intro .eyebrow { max-width: 240px; }
.trust-strip__intro h2 { max-width: 390px; font-size: clamp(2.1rem, 3vw, 3.4rem); }
.signature { margin-top: 24px; color: var(--gold); font-family: 'Segoe Script', cursive; font-size: 2rem; transform: rotate(-5deg); }
.stat { display: flex; flex-direction: column; justify-content: center; }
.stat span { font-family: var(--serif); font-size: clamp(2.7rem, 4vw, 4.8rem); line-height: 1; }
.stat strong { margin: 15px 0 7px; color: #7b552d; text-transform: uppercase; letter-spacing: .11em; font-size: .74rem; }
.stat p { margin: 0; color: #6d747d; font-size: .82rem; }
.stat:last-child { color: var(--text); border-right: 0; }
.stat:last-child p { color: var(--muted); }
.stat:last-child strong { color: var(--gold); }

.section { position: relative; padding: clamp(84px, 9vw, 150px) max(5vw, calc((100vw - 1500px)/2)); }
.section__head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.section__head h2 { margin-bottom: 0; }
.section__controls { display: flex; gap: 10px; }
.round-button { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid var(--line-white); border-radius: 50%; background: rgba(255,255,255,.03); cursor: pointer; transition: .25s ease; }
.round-button:hover { border-color: var(--gold); background: rgba(198,154,98,.08); }

.services { background: linear-gradient(180deg, #07101d, #091421); overflow: hidden; }
.services::before { content: ''; position: absolute; width: 600px; height: 600px; right: -220px; top: -260px; border-radius: 50%; border: 1px solid rgba(198,154,98,.08); box-shadow: 0 0 0 70px rgba(198,154,98,.025), 0 0 0 140px rgba(198,154,98,.018); }
.service-slider { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(295px, 1fr); gap: 14px; overflow-x: auto; padding: 4px 4px 24px; scrollbar-width: none; scroll-snap-type: x mandatory; }
.service-slider::-webkit-scrollbar { display: none; }
.service-card { position: relative; min-height: 360px; padding: 30px; border: 1px solid var(--line-white); border-radius: 18px; background: linear-gradient(160deg, rgba(20,35,52,.84), rgba(8,17,29,.82)); scroll-snap-align: start; overflow: hidden; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 20%, rgba(198,154,98,.08) 50%, transparent 80%); transform: translateX(-110%); transition: transform .65s ease; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(198,154,98,.48); box-shadow: 0 28px 60px rgba(0,0,0,.24); }
.service-card:hover::before { transform: translateX(110%); }
.service-card__number { position: absolute; top: 24px; right: 26px; color: rgba(255,255,255,.11); font-family: var(--serif); font-size: 3rem; }
.service-card .icon-chip { margin-bottom: 60px; }
.service-card h3 { font-size: 1.65rem; }
.service-card p { color: var(--muted); }
.service-card button { position: absolute; left: 30px; right: 30px; bottom: 28px; display: flex; justify-content: space-between; padding: 14px 0 0; border: 0; border-top: 1px solid var(--line-white); background: none; color: var(--gold-bright); cursor: pointer; text-transform: uppercase; font-size: .68rem; letter-spacing: .1em; }

.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); background: #f3efe7; color: var(--ink); }
.story__visual { position: relative; min-height: 620px; }
.architecture-card { position: absolute; inset: 0 8% 0 0; border-radius: 28px; background: linear-gradient(145deg, rgba(227,225,220,.3), rgba(255,255,255,.76)), linear-gradient(120deg, #c1c5c7 0 20%, #f8f8f6 20% 25%, #9ea6aa 25% 30%, #eef0f0 30% 60%, #a8aeb1 60% 66%, #f6f6f4 66%); box-shadow: 0 30px 80px rgba(20,29,38,.17); overflow: hidden; }
.architecture-card::before { content: ''; position: absolute; inset: 8% 14%; border: 12px solid rgba(35,46,56,.15); border-bottom-width: 26px; box-shadow: inset 0 0 0 6px rgba(255,255,255,.62); }
.architecture-card::after { content: ''; position: absolute; left: 5%; right: 5%; bottom: 8%; height: 20%; background: repeating-linear-gradient(90deg, rgba(42,52,59,.16) 0 3%, transparent 3% 8%); }
.architecture-card span, .architecture-card i, .architecture-card b { position: absolute; background: rgba(255,255,255,.75); box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.architecture-card span { width: 22%; height: 54%; left: 10%; top: 14%; }
.architecture-card i { width: 22%; height: 54%; right: 10%; top: 14%; }
.architecture-card b { width: 28%; height: 35%; left: 36%; bottom: 10%; }
.story__badge { position: absolute; right: 0; bottom: 8%; display: grid; place-items: center; width: 140px; height: 140px; border-radius: 50%; color: #fff; background: var(--bg); box-shadow: 0 20px 50px rgba(0,0,0,.2); }
.story__badge strong { font-family: var(--serif); font-size: 2rem; }
.story__badge small { margin-top: -24px; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; }
.story__copy { align-self: center; }
.story__copy h2 { max-width: 790px; }
.story__copy > p:not(.eyebrow) { max-width: 760px; color: #59616a; font-size: 1.04rem; }
.timeline { margin-top: 50px; border-top: 1px solid rgba(16,26,39,.15); }
.timeline div { display: grid; grid-template-columns: 90px 1fr; gap: 26px; padding: 22px 0; border-bottom: 1px solid rgba(16,26,39,.12); }
.timeline span { color: #9a6d3e; font-weight: 800; }
.timeline p { margin: 0; }

.news { background: #091421; }
.news-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 18px; }
.news-feature, .news-card { border: 1px solid var(--line-white); border-radius: 20px; background: linear-gradient(150deg, rgba(21,36,52,.78), rgba(8,17,29,.78)); overflow: hidden; }
.news-feature { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 380px; }
.news-feature__visual { position: relative; display: grid; place-items: center; background: radial-gradient(circle at 50% 35%, rgba(198,154,98,.22), transparent 40%), linear-gradient(145deg, #16283b, #07101c); overflow: hidden; }
.news-feature__visual::before { content: ''; position: absolute; width: 240px; height: 300px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; transform: rotate(-8deg); box-shadow: 30px 20px 0 rgba(255,255,255,.04); }
.news-feature__visual span { font-family: var(--serif); font-size: 7rem; color: var(--gold); }
.news-feature__visual i { position: absolute; bottom: 24%; font-style: normal; letter-spacing: .32em; font-size: .68rem; }
.news-feature > div:last-child { padding: 42px; align-self: center; }
.news-feature h3 { margin: 18px 0; font-size: clamp(1.8rem, 3vw, 3rem); }
.news-feature p, .news-card p { color: var(--muted); }
.news-feature a { color: var(--gold-bright); text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; }
.pill { display: inline-flex; padding: 6px 10px; border: 1px solid rgba(198,154,98,.3); border-radius: 99px; color: var(--gold-bright); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.news-card { display: flex; flex-direction: column; gap: 30px; min-height: 380px; padding: 30px; }
.news-card__date { display: grid; place-items: center; width: 70px; height: 70px; border: 1px solid var(--line); border-radius: 16px; color: var(--gold-bright); font-family: var(--serif); font-size: 1.65rem; }
.news-card__date small { font-family: var(--sans); font-size: .55rem; letter-spacing: .15em; }
.news-card h3 { margin: 16px 0; font-size: 1.65rem; }

.career { display: grid; grid-template-columns: 1fr .9fr; gap: 60px; align-items: center; background: linear-gradient(135deg, #0b1725, #07101d 58%, #111c29); overflow: hidden; }
.career__mesh { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(30deg, transparent 48%, rgba(198,154,98,.2) 49%, transparent 50%), linear-gradient(-30deg, transparent 48%, rgba(198,154,98,.2) 49%, transparent 50%); background-size: 70px 120px; mask-image: linear-gradient(90deg, transparent, #000 55%, transparent); }
.career__copy, .career__job { position: relative; z-index: 1; }
.career__copy p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 1.02rem; }
.career__job { padding: 40px; border: 1px solid var(--line-white); border-radius: 24px; background: rgba(255,255,255,.04); backdrop-filter: blur(12px); }
.career__job h3 { margin: 20px 0; font-size: clamp(2rem, 3vw, 3rem); }
.career__job ul { padding-left: 20px; color: #c6cdd4; }
.career__job li { margin: 8px 0; }
.career__meta { display: flex; gap: 12px; margin-top: 30px; }
.career__meta span { padding: 8px 11px; border: 1px solid var(--line-white); border-radius: 99px; color: var(--muted); font-size: .75rem; }

.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; background: #f4f0e8; color: var(--ink); }
.contact__copy > p:not(.eyebrow) { max-width: 600px; color: #626a72; }
.contact-list { margin-top: 40px; border-top: 1px solid rgba(16,26,39,.14); }
.contact-list > * { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(16,26,39,.12); }
.contact-list > * > span { color: #9a6d3e; font-family: var(--serif); }
.contact-list small, .contact-list strong { display: block; }
.contact-list small { margin-bottom: 3px; color: #80878d; text-transform: uppercase; font-size: .65rem; letter-spacing: .12em; }
.contact-list strong { overflow-wrap: anywhere; font-weight: 550; }
.map-card { position: relative; min-height: 620px; border-radius: 28px; background: linear-gradient(145deg, #d6d4cd, #ece9e1); box-shadow: 0 30px 80px rgba(14,27,38,.18); overflow: hidden; isolation: isolate; }
.map-card__grid { position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(rgba(51,68,79,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(51,68,79,.09) 1px, transparent 1px); background-size: 46px 46px; transform: rotate(-8deg) scale(1.2); }
.map-card__river { position: absolute; width: 160%; height: 160px; left: -30%; top: 44%; border: 28px solid rgba(85,126,154,.22); border-left-color: transparent; border-right-color: transparent; border-radius: 50%; transform: rotate(-13deg); }
.map-card__roads i { position: absolute; display: block; height: 3px; width: 75%; background: rgba(123,128,126,.34); transform-origin: left center; }
.map-card__roads i:nth-child(1) { left: 3%; top: 26%; transform: rotate(18deg); }
.map-card__roads i:nth-child(2) { left: 12%; top: 65%; transform: rotate(-12deg); }
.map-card__roads i:nth-child(3) { left: 40%; top: 8%; transform: rotate(78deg); }
.map-card__roads i:nth-child(4) { left: 62%; top: 25%; transform: rotate(105deg); }
.map-card__pin { position: absolute; left: 66%; top: 39%; width: 68px; height: 68px; border-radius: 50% 50% 50% 0; background: var(--gold); transform: rotate(-45deg); box-shadow: 0 18px 30px rgba(78,50,24,.25); }
.map-card__pin span { position: absolute; inset: 22px; border-radius: 50%; background: #fff; }
.map-card__panel { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 30px; border: 1px solid rgba(255,255,255,.26); border-radius: 20px; color: #fff; background: rgba(7,16,29,.84); backdrop-filter: blur(18px); }
.map-card__panel h3 { margin-bottom: 12px; font-size: 2rem; }
.map-card__panel p { color: #c6cdd4; }

.site-footer { padding: 54px max(5vw, calc((100vw - 1500px)/2)) 24px; background: #040a12; }
.site-footer__top { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 30px; padding-bottom: 38px; border-bottom: 1px solid var(--line-white); }
.site-footer__top p { margin: 0; color: var(--muted); }
.site-footer__bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding-top: 26px; color: #778493; font-size: .72rem; }
.site-footer__bottom div { display: flex; gap: 18px; }
.site-footer__bottom button { border: 0; background: none; color: inherit; cursor: pointer; }
.site-footer__bottom > span:last-child { text-align: right; }
.site-footer__draft { margin: 22px 0 0; color: #53606e; font-size: .68rem; text-align: center; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.service-dialog, .legal-dialog { width: min(760px, calc(100% - 32px)); max-height: min(760px, calc(100vh - 40px)); padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line-white); border-radius: 24px; color: var(--text); background: linear-gradient(145deg, #102033, #07101d); box-shadow: var(--shadow); }
.service-dialog::backdrop, .legal-dialog::backdrop { background: rgba(1,5,10,.78); backdrop-filter: blur(8px); }
.dialog-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border: 1px solid var(--line-white); border-radius: 50%; background: rgba(255,255,255,.04); cursor: pointer; font-size: 1.3rem; }
.service-dialog h2, .legal-dialog h2 { margin: 14px 0 20px; font-size: clamp(2.4rem, 5vw, 4.5rem); }
.service-dialog p, .legal-dialog p, .legal-dialog li { color: var(--muted); }
.service-dialog ul { margin: 28px 0 34px; padding: 0; list-style: none; }
.service-dialog li { padding: 11px 0; border-bottom: 1px solid var(--line-white); color: #cbd2d9; }
.service-dialog li::before { content: '—'; margin-right: 12px; color: var(--gold); }
.legal-dialog { overflow-y: auto; }
.legal-dialog h3 { margin-top: 30px; }
.legal-dialog .notice { padding: 15px; border: 1px solid rgba(198,154,98,.35); border-radius: 12px; color: #e4c89f; background: rgba(198,154,98,.08); }

.cursor-glow { position: fixed; z-index: 5000; width: 260px; height: 260px; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(198,154,98,.08), transparent 68%); transform: translate(-50%, -50%); opacity: 0; transition: opacity .3s ease; mix-blend-mode: screen; }
body:hover .cursor-glow { opacity: 1; }

@media (max-width: 1220px) {
  .header-actions .button { display: none; }
  .hero__inner { width: min(100% - 42px, 1180px); }
  .contact-float { width: 275px; }
  .hero-cards { padding-right: 0; }
  .trust-strip { grid-template-columns: 1.2fr repeat(2, 1fr); background: #f6f1e8; }
  .stat:last-child { color: var(--ink); }
  .stat:last-child p { color: #6d747d; }
  .trust-strip__intro { grid-row: span 2; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-feature { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  :root { --header-h: 72px; }
  .site-header__inner { width: calc(100% - 32px); }
  .menu-toggle { display: block; order: 3; }
  .main-nav { position: fixed; top: 72px; left: 16px; right: 16px; display: grid; gap: 0; padding: 16px; border: 1px solid var(--line-white); border-radius: 18px; background: rgba(5,12,21,.97); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 15px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .header-actions { margin-left: auto; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 46px); }
  .hero__inner { min-height: auto; grid-template-columns: 1fr; padding-bottom: 0; }
  .hero__copy { max-width: 660px; padding: 50px 0 20px 36px; }
  .hero__copy h1 { font-size: clamp(4rem, 10vw, 6rem); }
  .hero__scroll-rail { left: 0; top: 4%; bottom: 55%; }
  .hero-visual { position: relative; inset: auto; height: 440px; margin: -60px -70px 0 24%; }
  .contact-float { top: 43%; right: 2%; }
  .hero-cards { grid-template-columns: repeat(2, 1fr); padding: 0; }
  .hero-card { border-right: 1px solid var(--line-white); }
  .hero-card:first-child { border-radius: 14px 0 0 0; }
  .hero-card:nth-child(2) { border-radius: 0 14px 0 0; }
  .hero-card:last-child { border-radius: 0; }
  .story, .career, .contact { grid-template-columns: 1fr; }
  .story__visual { min-height: 500px; }
  .contact { gap: 46px; }
  .map-card { min-height: 520px; }
}

@media (max-width: 720px) {
  .brand { min-width: 0; }
  .brand__text small { font-size: .48rem; }
  .brand__text strong { font-size: .92rem; }
  .language-grid { grid-template-columns: 1fr; }
  .language-gate__panel { padding: 30px 20px; }
  .header-actions { gap: 6px; }
  .language-switcher__current { padding: 8px; }
  .hero__inner { width: calc(100% - 28px); }
  .hero__copy { padding: 48px 0 10px 8px; }
  .hero__copy h1 { font-size: clamp(3.3rem, 15vw, 4.8rem); }
  .hero__lead { font-size: .95rem; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero__scroll-rail { display: none; }
  .hero-visual { height: 330px; margin: -10px -110px -20px 5%; }
  .folder { width: 88%; left: 9%; }
  .paper-stack { right: 4%; }
  .contact-float { position: relative; top: auto; right: auto; width: 100%; margin: 0; }
  .hero-cards { grid-template-columns: 1fr; }
  .hero-card, .hero-card:first-child, .hero-card:nth-child(2), .hero-card:last-child { border-radius: 0; border-right: 1px solid var(--line-white); }
  .hero-card:first-child { border-radius: 14px 14px 0 0; }
  .hero-card:last-child { border-radius: 0 0 14px 14px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip__intro { grid-column: 1 / -1; grid-row: auto; min-height: auto; padding: 58px 24px; }
  .stat { min-height: 220px; padding: 34px 20px; }
  .stat span { font-size: 2.7rem; }
  .section { padding: 82px 22px; }
  .section__head { align-items: flex-start; flex-direction: column; }
  .service-slider { grid-auto-columns: 86vw; }
  .story__visual { min-height: 390px; }
  .architecture-card { right: 4%; }
  .story__badge { width: 110px; height: 110px; }
  .timeline div { grid-template-columns: 62px 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature__visual { min-height: 290px; }
  .news-card { min-height: auto; }
  .career__job { padding: 28px 22px; }
  .career__meta { flex-wrap: wrap; }
  .map-card { min-height: 500px; }
  .map-card__panel { left: 14px; right: 14px; bottom: 14px; padding: 22px; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__top .button { width: auto; justify-self: start; }
  .site-footer__bottom { grid-template-columns: 1fr; }
  .site-footer__bottom div { flex-wrap: wrap; }
  .site-footer__bottom > span:last-child { text-align: left; }
  .cursor-glow { display: none; }
}

@media (max-width: 460px) {
  .site-header__inner { width: calc(100% - 20px); }
  .brand-mark { width: 28px; height: 28px; }
  .brand__text strong { letter-spacing: .08em; }
  .language-switcher__menu { right: -45px; }
  .hero__copy h1 { font-size: 3.35rem; }
  .trust-strip { grid-template-columns: 1fr; }
  .stat { min-height: 190px; }
  .stat:last-child { color: var(--ink); }
  .stat:last-child p { color: #6d747d; }
  .stat:last-child strong { color: #7b552d; }
  .news-feature > div:last-child { padding: 28px 22px; }
  .contact-list strong { font-size: .9rem; }
}

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