:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --charcoal: #141417;
  --charcoal-2: #1c1b1a;
  --gold: #d7aa45;
  --gold-bright: #f0cb72;
  --gold-dark: #8c6925;
  --text: #f6f2e9;
  --muted: #b7b1a5;
  --line: rgba(215, 170, 69, 0.2);
  --glass: rgba(255, 255, 255, 0.055);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --container: min(1120px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 4%, rgba(215, 170, 69, 0.16), transparent 28rem),
    radial-gradient(circle at 8% 28%, rgba(255, 255, 255, 0.05), transparent 18rem),
    linear-gradient(135deg, #020202 0%, var(--bg) 48%, #11100e 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(215, 170, 69, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 170, 69, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 10%, black, transparent 72%);
}

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

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

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

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  background: var(--gold);
  color: #080806;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(215, 170, 69, 0.28);
  background: #060606;
  box-shadow: 0 0 28px rgba(215, 170, 69, 0.14);
}

.site-header .brand-mark,
.footer .brand-mark {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: var(--gold-bright);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(246, 242, 233, 0.82);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-panel a:not(.btn):hover {
  color: var(--gold-bright);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(215, 170, 69, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 11px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 46%, var(--gold-dark));
  color: #090806;
  box-shadow: 0 16px 42px rgba(215, 170, 69, 0.22);
}

.btn-ghost {
  border-color: rgba(215, 170, 69, 0.34);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(240, 203, 114, 0.75);
  box-shadow: 0 16px 38px rgba(215, 170, 69, 0.1);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 26px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 8vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(215, 170, 69, 0.2);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(246, 242, 233, 0.84);
  font-size: 0.86rem;
}

.hero-bg .line {
  position: absolute;
  width: 1px;
  height: 440px;
  background: linear-gradient(transparent, rgba(240, 203, 114, 0.55), transparent);
  transform-origin: center;
  opacity: 0.5;
}

.line-one {
  right: 17%;
  top: 10%;
  transform: rotate(42deg);
}

.line-two {
  right: 35%;
  top: 28%;
  transform: rotate(-44deg);
}

.line-three {
  left: 8%;
  bottom: -8%;
  transform: rotate(28deg);
}

.logo-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  isolation: isolate;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.logo-visual::before,
.logo-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.logo-visual::before {
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 0 150px 92px rgba(215, 170, 69, 0.14),
    72px -42px 120px 42px rgba(240, 203, 114, 0.08),
    -82px 58px 130px 36px rgba(255, 255, 255, 0.035);
  z-index: 0;
}

.logo-visual::after {
  width: min(320px, 62vw);
  height: min(320px, 62vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 203, 114, 0.16), transparent 68%);
  filter: blur(35px);
  transform: translate(18px, -10px);
  z-index: 1;
}

.logo-visual img {
  width: min(360px, 72vw);
  max-width: 360px;
  height: auto;
  object-fit: contain;
  aspect-ratio: auto;
  background: transparent;
  filter:
    drop-shadow(0 18px 35px rgba(0, 0, 0, 0.65)) drop-shadow(14px 0 18px rgba(240, 203, 114, 0.13)) drop-shadow(0 0 28px rgba(215, 170, 69, 0.16));
  position: relative;
  z-index: 3;
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transform-origin: center;
}

.ambient-glow {
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

.glow-primary {
  box-shadow: 0 0 130px 78px rgba(240, 203, 114, 0.13);
}

.glow-secondary {
  transform: translate(96px, -84px);
  box-shadow: 0 0 96px 46px rgba(215, 170, 69, 0.075);
}

.glow-tertiary {
  transform: translate(-118px, 92px);
  box-shadow: 0 0 104px 34px rgba(246, 242, 233, 0.035);
}

.geo-line {
  position: absolute;
  width: 1px;
  height: 56%;
  background: rgba(240, 203, 114, 0.22);
  box-shadow: 0 0 22px rgba(240, 203, 114, 0.22);
  opacity: 0.42;
  z-index: 1;
}

.geo-line-one {
  left: 18%;
  top: 16%;
  transform: rotate(37deg);
}

.geo-line-two {
  right: 20%;
  top: 8%;
  transform: rotate(-34deg);
}

.geo-line-three {
  right: 42%;
  bottom: -6%;
  transform: rotate(90deg);
  opacity: 0.32;
}

.logo-shadow {
  position: absolute;
  width: min(320px, 62%);
  height: 44px;
  bottom: 14%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.7), transparent 70%);
  filter: blur(12px);
  opacity: 0.58;
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
  .logo-visual img {
    transition: transform 500ms ease, filter 500ms ease;
  }

  .logo-visual:hover img {
    transform: perspective(1000px) rotateY(-1deg) rotateX(1deg) translateY(-6px) scale(1.025);
    filter:
      drop-shadow(0 24px 45px rgba(0, 0, 0, 0.75)) drop-shadow(18px 0 22px rgba(240, 203, 114, 0.18)) drop-shadow(0 0 36px rgba(215, 170, 69, 0.22));
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card,
.pillar,
.contact-card,
.certificate,
.conversion-panel {
  border: 1px solid rgba(215, 170, 69, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.service-card {
  min-height: 260px;
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 203, 114, 0.58);
  background: linear-gradient(145deg, rgba(215, 170, 69, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(215, 170, 69, 0.3);
  color: var(--gold-bright);
  background: rgba(0, 0, 0, 0.26);
  position: relative;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border: 1px solid var(--gold-bright);
}

.service-icon::before {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
}

.service-icon::after {
  width: 30px;
  height: 30px;
  border-color: rgba(240, 203, 114, 0.28);
}

.service-card p,
.about-copy p,
.proof-heading p,
.conversion-panel p {
  color: var(--muted);
}

.proof {
  overflow: hidden;
}

.proof-heading {
  max-width: 780px;
}

.proof-heading p {
  max-width: 650px;
  font-size: 1.04rem;
}

.proof-carousel {
  position: relative;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.proof-card {
  position: relative;
  margin: 0;
  height: 360px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(215, 170, 69, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform 280ms ease, filter 280ms ease;
  backface-visibility: hidden;
  display: block;
}

.proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 203, 114, 0.42);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.42), 0 0 34px rgba(215, 170, 69, 0.1);
}

.proof-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.proof-dots {
  display: none;
}

.about {
  background: linear-gradient(180deg, transparent, rgba(215, 170, 69, 0.035), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.about-copy h2 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 4vw, 3.05rem);
  line-height: 1.06;
}

.about-copy p {
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.65;
}

.pillar-grid {
  display: grid;
  gap: 14px;
}

.pillar {
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pillar span {
  color: var(--gold-bright);
  font-weight: 800;
}

.pillar h3 {
  margin: 0;
}

.certificate {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.certificate::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(240, 203, 114, 0.22);
  pointer-events: none;
}

.certificate::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(215, 170, 69, 0.18);
  transform: rotate(45deg);
}

.certificate-number {
  position: relative;
  z-index: 1;
  min-width: min(100%, 310px);
  padding: 28px;
  border: 1px solid rgba(215, 170, 69, 0.3);
  background: rgba(0, 0, 0, 0.24);
}

.certificate-number span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.certificate-number strong {
  color: var(--gold-bright);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
}

.conversion-panel {
  padding: clamp(28px, 5vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(215, 170, 69, 0.15), rgba(255, 255, 255, 0.035)),
    var(--charcoal);
}

.conversion-panel h2 {
  max-width: 800px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 20px;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 22px;
}

.contact-card span {
  display: block;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.contact-value {
  display: inline-block;
}

.contact-value:hover strong {
  color: var(--gold-bright);
}

.contact-note {
  margin: 6px 0 0;
  color: rgba(246, 242, 233, 0.68);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.map-button {
  width: 100%;
}

.map-placeholder {
  min-height: 445px;
  border: 1px solid rgba(215, 170, 69, 0.2);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(215, 170, 69, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(215, 170, 69, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(215, 170, 69, 0.12), rgba(255, 255, 255, 0.025));
  background-size: 48px 48px, 48px 48px, auto;
}

.static-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.44);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-legal {
  text-align: right;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-legal p {
  margin: 0;
}

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

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

@media (max-width: 940px) {
  .section {
    padding: 53px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    inset: 76px 16px auto 16px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(215, 170, 69, 0.2);
    background: rgba(9, 9, 9, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-panel a {
    padding: 12px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    order: -1;
  }

  .logo-visual {
    min-height: 360px;
  }

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

  .proof-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: -16px;
    padding: 0 16px 14px;
  }

  .proof-grid::-webkit-scrollbar {
    display: none;
  }

  .proof-card {
    flex: 0 0 86%;
    height: min(420px, 70vh);
    min-height: 330px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .proof-card:hover {
    transform: none;
  }

  .proof-card:hover img {
    transform: scale(1.001);
    filter: none;
  }

  .proof-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
  }

  .proof-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(246, 242, 233, 0.28);
    cursor: pointer;
    transition: width 180ms ease, background 180ms ease;
  }

  .proof-dots button[aria-current="true"] {
    width: 22px;
    background: var(--gold-bright);
  }

  .certificate,
  .conversion-panel,
  .footer-grid {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-grid {
    display: grid;
  }

  .footer-legal {
    text-align: left;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 24px, 1120px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-panel {
    top: 68px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-text strong {
    font-size: 0.86rem;
  }

  .brand-text small {
    font-size: 0.62rem;
  }

  .hero {
    padding-top: 20px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.1rem);
  }

  .hero-actions,
  .trust-strip {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .logo-visual {
    min-height: 315px;
  }

  .logo-visual img {
    width: min(212px, 60vw);
    max-width: 212px;
    height: auto;
    object-fit: contain;
    transform: perspective(900px) rotateY(-1deg) rotateX(1deg);
    filter:
      drop-shadow(0 16px 28px rgba(0, 0, 0, 0.58)) drop-shadow(8px 0 14px rgba(240, 203, 114, 0.1)) drop-shadow(0 0 20px rgba(215, 170, 69, 0.12));
  }

  .map-placeholder {
    min-height: 320px;
  }

}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
