:root {
  --navy-975: #040b14;
  --navy-950: #07101d;
  --navy-925: #091421;
  --navy-900: #0c1828;
  --navy-850: #122238;
  --gold-600: #b88d3f;
  --gold-500: #d1ad62;
  --gold-400: #e7cb87;
  --gold-300: #f1dda9;
  --silver-50: #f7f8fa;
  --silver-100: #eef1f5;
  --silver-200: #d9dee7;
  --silver-400: #98a3b3;
  --silver-600: #667083;
  --ink: #172033;
  --white: #ffffff;
  --surface: #f4f6f8;
  --line: #e3e7ed;
  --shadow: 0 24px 70px rgba(4, 12, 24, .14);
  --shadow-soft: 0 14px 40px rgba(12, 24, 40, .08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--gold-400);
  color: var(--navy-950);
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 94px 0; }
.section-soft { background: var(--surface); }
.section-dark {
  color: var(--white);
  background: radial-gradient(circle at 75% 20%, rgba(209,173,98,.14), transparent 28%), linear-gradient(135deg, var(--navy-975), var(--navy-850));
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-copy { color: var(--silver-200); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold-600);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: currentColor; }
.eyebrow-on-dark { color: var(--gold-400); }
.eyebrow-on-gold { color: #4c3612; }
.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.6vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: -.04em;
  color: var(--navy-950);
}
.section-copy { margin: 0; color: #586274; font-size: 1.04rem; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 44px;
}
.section-heading.compact { margin-bottom: 36px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 14px 30px rgba(209,173,98,.23);
}
.btn-primary:hover { box-shadow: 0 18px 38px rgba(209,173,98,.34); }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.06); }
.btn-secondary:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.58); }
.btn-dark { color: var(--white); background: var(--navy-900); }
.btn-link { color: var(--navy-900); padding-inline: 0; min-height: auto; border-radius: 0; border-bottom: 1px solid var(--gold-500); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 78px;
  color: var(--white);
  background: rgba(7,16,29,.88);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; min-width: 0; }
.brand img { width: 235px; max-height: 54px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; gap: 23px; }
.nav a { color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 750; }
.nav a:hover, .nav a:focus { color: var(--gold-400); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-header { min-height: 44px; padding-inline: 18px; font-size: .86rem; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.68);
  border-radius: 999px;
  padding: 5px 8px;
  font-size: .72rem;
  font-weight: 900;
}
.lang-toggle button.active { color: var(--navy-950); background: var(--gold-400); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: var(--white);
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: currentColor; margin: 4px auto; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 146px 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 26%, rgba(209,173,98,.15), transparent 24%),
    radial-gradient(circle at 18% 84%, rgba(72,91,119,.18), transparent 26%),
    linear-gradient(135deg, var(--navy-975), var(--navy-850));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 88%);
}
.hero-orbit { position: absolute; border: 1px solid rgba(231,203,135,.12); border-radius: 50%; }
.orbit-one { width: 650px; height: 650px; right: -220px; top: 55px; box-shadow: 0 0 0 90px rgba(255,255,255,.015); }
.orbit-two { width: 380px; height: 380px; left: -210px; bottom: -170px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); gap: 72px; align-items: center; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 6.6vw, 6.5rem);
  line-height: .96;
  letter-spacing: -.055em;
  color: var(--white);
}
.hero-copy { max-width: 700px; margin: 24px 0 0; color: var(--silver-200); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 39px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-facts div { padding-right: 12px; }
.hero-facts strong { display: block; color: var(--gold-400); font-size: .88rem; letter-spacing: .04em; }
.hero-facts span { display: block; margin-top: 3px; color: var(--silver-400); font-size: .81rem; }

.hero-console {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  box-shadow: 0 30px 85px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.console-top { display: flex; align-items: center; gap: 17px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.11); }
.console-top img { width: 82px; height: 82px; object-fit: contain; border-radius: 17px; background: rgba(7,16,29,.55); }
.console-top span { display: block; color: var(--silver-400); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.console-top strong { display: block; margin-top: 4px; color: var(--white); font-family: Georgia, serif; font-size: 1.45rem; }
.console-list { display: grid; gap: 1px; margin-top: 12px; }
.console-item { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.console-item:last-child { border-bottom: 0; }
.console-item > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(231,203,135,.12); color: var(--gold-400); font-size: .75rem; font-weight: 900; }
.console-item p { margin: 0; }
.console-item strong { display: block; color: var(--white); font-size: .93rem; }
.console-item small { display: block; margin-top: 2px; color: var(--silver-400); font-size: .79rem; }
.console-callout { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 19px; padding: 18px; border-radius: 16px; background: var(--gold-400); color: var(--navy-950); }
.console-callout strong { display: block; font-size: .9rem; }
.console-callout span { display: block; margin-top: 2px; color: #3f331d; font-size: .78rem; }
.console-callout a { display: grid; place-items: center; flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; background: var(--navy-950); color: var(--white); font-size: 1.2rem; }

.services-section { background: var(--white); }
.solution-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.solution-card {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.solution-card-head { display: flex; gap: 16px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid #e8ebf0; }
.icon-box { display: grid; place-items: center; flex: 0 0 auto; width: 52px; height: 52px; border-radius: 15px; color: var(--navy-950); background: linear-gradient(145deg, #f6ead0, #dfbd72); }
.solution-card-head span { display: block; color: var(--gold-600); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.solution-card h3 { margin: 2px 0 0; color: var(--navy-950); font-family: Georgia, serif; font-size: 1.48rem; line-height: 1.2; }
.solution-intro { margin: 20px 0 0; color: #5b6576; }
.service-lines { display: grid; gap: 18px; margin-top: 23px; }
.service-lines > div { display: grid; grid-template-columns: 12px 1fr; gap: 12px; align-items: start; }
.service-lines i { width: 8px; height: 8px; margin-top: 8px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 4px #f4ead5; }
.service-lines p { margin: 0; }
.service-lines strong { display: block; color: var(--navy-900); font-size: .94rem; }
.service-lines span { display: block; margin-top: 3px; color: #687284; font-size: .88rem; line-height: 1.55; }
.legal-inline { margin: 26px 0 0; padding: 15px 18px; border-left: 3px solid var(--gold-500); background: #f8f4eb; color: #5b5c61; font-size: .84rem; }

.approach-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); gap: 76px; align-items: center; }
.approach-copy .section-copy { margin-top: 20px; }
.approach-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; }
.approach-points span { padding: 8px 12px; border: 1px solid #dce1e8; border-radius: 999px; background: var(--white); color: var(--navy-900); font-size: .8rem; font-weight: 800; }
.process-panel { overflow: hidden; border-radius: var(--radius-xl); background: var(--navy-950); color: var(--white); box-shadow: var(--shadow); }
.process-step { display: grid; grid-template-columns: 76px 1fr; gap: 22px; padding: 29px 32px; border-bottom: 1px solid rgba(255,255,255,.11); }
.process-step:last-child { border-bottom: 0; }
.process-step > span { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; background: rgba(231,203,135,.13); color: var(--gold-400); font-family: Georgia, serif; font-size: 1.25rem; }
.process-step h3 { margin: 0; font-family: Georgia, serif; font-size: 1.35rem; }
.process-step p { margin: 5px 0 0; color: var(--silver-400); font-size: .91rem; }

.section-gold {
  color: var(--navy-950);
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.34), transparent 22%),
    radial-gradient(circle at 90% 90%, rgba(114,78,18,.11), transparent 28%),
    linear-gradient(135deg, #efd99f 0%, #d5ad5f 52%, #e6c77e 100%);
}
.gold-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr); gap: 68px; align-items: center; }
.section-gold .section-title { color: var(--navy-975); }
.gold-copy > p { max-width: 720px; margin: 23px 0 0; color: #2f3440; font-size: 1.02rem; }
.gold-panel { padding: 31px; border: 1px solid rgba(7,16,29,.17); border-radius: var(--radius-lg); background: rgba(255,255,255,.76); box-shadow: 0 18px 50px rgba(79,50,6,.13); }
.gold-panel h3 { margin: 0; color: var(--navy-950); font-family: Georgia, serif; font-size: 1.65rem; }
.gold-panel ul { display: grid; gap: 13px; margin: 22px 0 0; padding: 0; list-style: none; }
.gold-panel li { position: relative; padding-left: 24px; color: #202a3a; font-weight: 750; }
.gold-panel li::before { content: "✓"; position: absolute; left: 0; color: #735018; font-weight: 950; }
.gold-note { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid rgba(7,16,29,.16); color: #4e5664; font-size: .82rem; }

.industries-section { background: var(--white); }
.industry-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.industry-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--silver-50); }
.industry-card > span { display: block; color: var(--gold-600); font-family: Georgia, serif; font-size: 1.2rem; }
.industry-card h3 { margin: 13px 0 8px; color: var(--navy-950); font-size: 1rem; line-height: 1.3; }
.industry-card p { margin: 0; color: #667083; font-size: .86rem; }

.booking-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 25%, rgba(209,173,98,.15), transparent 28%),
    linear-gradient(135deg, var(--navy-975), var(--navy-850));
}
.booking-layout { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr); gap: 66px; align-items: center; }
.booking-main .section-title { color: var(--white); }
.booking-main > p { margin: 22px 0 0; max-width: 720px; color: var(--silver-200); font-size: 1.02rem; }
.booking-meta { display: flex; flex-wrap: wrap; gap: 9px; margin: 27px 0; }
.booking-meta span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(255,255,255,.06); color: var(--silver-200); font-size: .78rem; font-weight: 800; }
.booking-process { padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-xl); background: rgba(255,255,255,.06); box-shadow: 0 25px 70px rgba(0,0,0,.2); }
.booking-process-title { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.11); }
.booking-process-title span { display: block; color: var(--gold-400); font-size: .76rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.booking-process-title strong { display: block; margin-top: 5px; font-family: Georgia, serif; font-size: 1.65rem; }
.booking-step { display: grid; grid-template-columns: 44px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.booking-step:last-child { padding-bottom: 0; border-bottom: 0; }
.booking-step > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--gold-400); color: var(--navy-950); font-weight: 950; }
.booking-step h3 { margin: 0; font-size: .96rem; }
.booking-step p { margin: 3px 0 0; color: var(--silver-400); font-size: .84rem; }

.contact-section { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr); gap: 72px; align-items: center; }
.contact-intro .section-copy { margin-top: 20px; }
.contact-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-card { display: flex; align-items: center; gap: 14px; min-height: 106px; padding: 19px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); }
.contact-card-wide { grid-column: 1 / -1; }
.contact-icon { display: grid; place-items: center; flex: 0 0 auto; width: 44px; height: 44px; border-radius: 13px; background: #f2e5c9; color: var(--navy-950); }
.contact-card small { display: block; color: #778192; font-size: .69rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.contact-card strong { display: block; margin-top: 4px; color: var(--navy-950); font-size: .92rem; line-height: 1.35; overflow-wrap: anywhere; }

.site-footer { color: var(--silver-200); background: var(--navy-975); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .95fr; gap: 54px; }
.footer-brand img { width: 285px; }
.footer-brand p { max-width: 490px; margin: 18px 0 0; color: var(--silver-400); }
.footer-col h3 { margin: 0 0 16px; color: var(--white); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; margin: 9px 0; color: var(--silver-400); font-size: .9rem; }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 43px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.09); color: #7d8796; font-size: .8rem; }
.footer-links { display: flex; gap: 18px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(4,10,18,.8);
  backdrop-filter: blur(8px);
}
.modal.open { display: grid; }
.modal-dialog { width: min(560px, 100%); padding: 30px; border-radius: 22px; background: var(--white); box-shadow: 0 30px 80px rgba(0,0,0,.38); }
.modal-top { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.modal h2 { margin: 0; font-family: Georgia, serif; font-size: 2rem; line-height: 1.1; }
.modal p { color: #5f6877; }
.modal-close { width: 38px; height: 38px; border-radius: 50%; border: 1px solid #dfe4ea; background: #f8f9fb; font-size: 1.2rem; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.legal-page { padding-top: 78px; }
.legal-hero { padding: 82px 0 54px; color: var(--white); background: linear-gradient(145deg, var(--navy-975), var(--navy-850)); }
.legal-hero .section-title { color: var(--white); }
.legal-hero .section-copy { color: var(--silver-200); }
.legal-body { padding: 66px 0 96px; }
.legal-content { max-width: 900px; }
.legal-content h2 { margin-top: 36px; color: var(--navy-900); font-family: Georgia, serif; }
.legal-content p, .legal-content li { color: #566173; }
.legal-content ul { padding-left: 22px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .62s ease, transform .62s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav { display: none; position: fixed; inset: 78px 0 0 0; padding: 36px 24px; background: rgba(7,16,29,.98); flex-direction: column; align-items: flex-start; gap: 22px; }
  .nav.open { display: flex; }
  .nav a { font-size: 1.22rem; }
  .menu-toggle { display: block; }
  .btn-header { display: none; }
  .hero-grid, .approach-grid, .gold-grid, .booking-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-console { max-width: 720px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  .site-header { height: 70px; }
  .brand img { width: 182px; }
  .nav { inset: 70px 0 0 0; }
  .hero { padding: 116px 0 72px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; gap: 11px; }
  .hero-facts div { padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-console { padding: 21px; }
  .console-top img { width: 66px; height: 66px; }
  .solution-grid, .industry-grid, .contact-cards { grid-template-columns: 1fr; }
  .solution-card { padding: 24px; }
  .approach-grid { gap: 42px; }
  .process-step { grid-template-columns: 56px 1fr; padding: 24px 22px; }
  .process-step > span { width: 46px; height: 46px; border-radius: 14px; }
  .gold-grid, .booking-layout, .contact-grid { gap: 42px; }
  .gold-panel, .booking-process { padding: 24px; }
  .contact-card-wide { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
  .nav-actions { gap: 6px; }
  .lang-toggle { padding: 4px; }
  .lang-toggle button { padding: 5px 7px; }
}

@media print {
  .site-header { position: absolute; }
  .reveal, .js .reveal { opacity: 1 !important; transform: none !important; }
  .btn { box-shadow: none; }
}

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