:root {
  --black: #070707;
  --ink: #101010;
  --panel: #151515;
  --panel-soft: rgba(255, 255, 255, 0.055);
  --text: #f8f3e8;
  --muted: #c9c1b4;
  --soft: #91877a;
  --line: rgba(255, 255, 255, 0.13);
  --line-gold: rgba(231, 169, 54, 0.28);
  --gold: #d99726;
  --gold-light: #f5c866;
  --copper: #ad6426;
  --max: 1180px;
  --radius: 10px;
  --header: 76px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 151, 38, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 36%, rgba(171, 100, 38, 0.1), transparent 24rem),
    var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0.58));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.93);
  border-color: var(--line);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

.nav {
  width: min(calc(100% - 40px), var(--max));
  height: var(--header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 850;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  box-shadow: 0 10px 36px rgba(217, 151, 38, 0.18);
}

.brand span {
  white-space: nowrap;
  font-size: 15px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(248, 243, 232, 0.86);
  font-size: 15px;
  font-weight: 720;
}

.nav-panel a:not(.nav-cta) {
  padding: 10px 0;
}

.nav-panel a:not(.nav-cta):hover,
.nav-panel a:not(.nav-cta):focus-visible,
.footer-contact a:hover,
.legal-links button:hover {
  color: var(--gold-light);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 850;
  text-align: center;
}

.nav-cta,
.button-primary {
  color: #130f08;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 54%, var(--copper));
  box-shadow: 0 18px 46px rgba(217, 151, 38, 0.22);
}

.button-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.button,
.nav-cta {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.language-switch button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(248, 243, 232, 0.74);
  cursor: pointer;
  font-weight: 850;
}

.language-switch button.is-active {
  background: rgba(245, 200, 102, 0.18);
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 13px 11px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.menu-toggle span + span {
  margin-top: 8px;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header) + 26px) 0 30px;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  width: min(920px, 76vw);
  height: min(920px, 76vw);
  border: 1px solid rgba(245, 200, 102, 0.1);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(217, 151, 38, 0.04);
}

.hero::after {
  bottom: 0;
  left: 50%;
  width: min(860px, 76vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(245, 200, 102, 0.42), transparent);
  opacity: 0.6;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.1) brightness(0.78);
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 39%, rgba(217, 151, 38, 0.2), transparent 24rem),
    linear-gradient(180deg, rgba(7, 7, 7, 0.6), rgba(7, 7, 7, 0.78) 70%, var(--black)),
    linear-gradient(90deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.46), rgba(7, 7, 7, 0.92));
}

.hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
}

.hero-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: min(860px, 92vw);
  height: clamp(330px, 45vw, 480px);
}

.hero-logo-wrap::before,
.hero-logo-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-logo-wrap::before {
  width: min(780px, 88vw);
  height: min(520px, 58vw);
  background: radial-gradient(ellipse, rgba(217, 151, 38, 0.22), rgba(217, 151, 38, 0.05) 46%, transparent 72%);
  filter: blur(10px);
}

.hero-logo-wrap::after {
  width: min(760px, 84vw);
  height: min(390px, 46vw);
  border-top: 1px solid rgba(245, 200, 102, 0.24);
  border-bottom: 1px solid rgba(245, 200, 102, 0.16);
  border-radius: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: clamp(570px, 60vw, 760px);
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  filter: contrast(1.08) saturate(1.08) drop-shadow(0 22px 46px rgba(0, 0, 0, 0.62));
  -webkit-mask-image: radial-gradient(ellipse 58% 48% at center, #000 66%, transparent 100%);
  mask-image: radial-gradient(ellipse 58% 48% at center, #000 66%, transparent 100%);
}

.hero-teaser {
  position: relative;
  width: min(100%, 640px);
  color: rgba(248, 243, 232, 0.82);
}

.hero-teaser p {
  margin: 0;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 680;
  letter-spacing: 0.015em;
}

.hero-teaser a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-teaser a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.intro-claim {
  width: min(100%, 850px);
  margin-bottom: 82px;
  text-align: center;
}

.company-name,
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.intro-claim h1,
.section-copy h2,
.contact-content h2 {
  margin: 0;
  letter-spacing: 0;
}

.intro-claim h1 {
  font-size: clamp(46px, 5.2vw, 66px);
  line-height: 1;
}

.intro-claim > p:not(.company-name) {
  width: min(100%, 710px);
  margin: 22px auto 0;
  color: rgba(248, 243, 232, 0.88);
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(800px, 70vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(245, 200, 102, 0.32), transparent);
}

.intro-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(217, 151, 38, 0.1), transparent 24rem),
    #0b0b0b;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: end;
}

.section-copy h2,
.contact-content h2 {
  font-size: 44px;
  line-height: 1.1;
}

.section-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-center {
  width: min(100%, 740px);
  margin: 0 auto 44px;
  text-align: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.value-grid article {
  min-height: 118px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.value-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-weight: 900;
}

.value-grid strong {
  font-size: 20px;
}

.services-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(171, 100, 38, 0.12), transparent 26rem),
    #10100f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 200, 102, 0.3);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.42) 56%, rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at 85% 10%, rgba(245, 200, 102, 0.14), transparent 11rem);
  pointer-events: none;
}

.service-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.16;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  padding-bottom: 118px;
  background:
    radial-gradient(circle at 50% 10%, rgba(217, 151, 38, 0.16), transparent 28rem),
    #090909;
}

.contact-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(12, 12, 12, 0.86);
  box-shadow: var(--shadow);
}

.contact-mark img {
  width: 230px;
  height: 230px;
  object-fit: cover;
  border: 1px solid rgba(245, 200, 102, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(217, 151, 38, 0.14);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--soft);
}

.contact-list dd {
  margin: 0;
  font-weight: 780;
}

.contact-actions {
  justify-content: flex-start;
}

.site-footer {
  padding: 42px 0 30px;
  background: #060606;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand contact"
    "actions actions";
  gap: 30px 50px;
  align-items: center;
}

.footer-brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border: 1px solid rgba(245, 200, 102, 0.2);
  border-radius: var(--radius);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span,
.footer-contact {
  color: rgba(248, 243, 232, 0.72);
}

.footer-contact {
  grid-area: contact;
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
}

.footer-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.legal-links button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(248, 243, 232, 0.72);
  cursor: pointer;
  font-size: 14px;
  text-underline-offset: 4px;
}

.legal-links button:hover,
.legal-links button:focus-visible {
  text-decoration: underline;
}

.legal-dialog {
  width: min(760px, calc(100% - 32px));
  padding: 0;
  color: var(--text);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  background: #101010;
  box-shadow: var(--shadow);
  max-height: min(760px, calc(100dvh - 32px));
  overflow: auto;
}

.legal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.legal-panel {
  position: relative;
  padding: 34px;
}

.legal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.legal-panel h2 {
  margin: 0 0 18px;
  font-size: 32px;
}

.legal-body {
  display: grid;
  gap: 22px;
  color: var(--muted);
}

.legal-body p {
  margin: 0;
}

.legal-summary {
  padding: 14px 16px;
  border-left: 2px solid var(--gold);
  background: rgba(245, 200, 102, 0.06);
  color: var(--text);
  font-size: 17px;
}

.legal-body section {
  display: grid;
  gap: 7px;
}

.legal-body h3 {
  margin: 0;
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: var(--header);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 8, 8, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .language-switch {
    width: max-content;
  }

  .hero {
    padding-top: calc(var(--header) + 22px);
  }

  .intro-claim h1 {
    font-size: 52px;
  }

  .intro-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-actions {
    align-items: flex-start;
  }

  .legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --header: 72px;
  }

  .container,
  .nav {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: max(620px, 100svh);
    padding: calc(var(--header) + 18px) 0 28px;
  }

  .hero-inner {
    gap: 4px;
  }

  .hero-logo-wrap {
    width: 100%;
    height: clamp(300px, 92vw, 390px);
  }

  .hero-logo {
    width: clamp(500px, 145vw, 620px);
  }

  .hero-teaser p {
    width: min(100%, 330px);
    margin-inline: auto;
    font-size: 17px;
  }

  .hero-teaser a {
    font-size: 12px;
  }

  .intro-claim h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .intro-claim > p:not(.company-name) {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 82px 0;
  }

  .section-copy h2,
  .contact-content h2 {
    font-size: 32px;
  }

  .value-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .contact-card {
    padding: 24px;
    gap: 28px;
  }

  .contact-mark img {
    width: 160px;
    height: 160px;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .legal-panel {
    padding: 28px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "contact"
      "actions";
    gap: 24px;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }

  .footer-actions {
    flex-direction: column-reverse;
  }

  .legal-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
