:root {
  --bg: #1f212c;
  --bg-soft: #272a36;
  --card: rgba(255, 255, 255, 0.04);
  --gold: #d8be80;
  --gold-strong: #f1dda7;
  --text: #f4ead5;
  --muted: #c6b38a;
  --text-soft: #e4d5b4;
  --text-dim: #ccb992;
  --line: rgba(215, 192, 138, 0.35);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  scroll-behavior: smooth;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 90;
  background: linear-gradient(90deg, #f2dfb3, var(--gold));
  box-shadow: 0 0 16px rgba(215, 192, 138, 0.7);
}

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(15, 17, 25, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
}

.main-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--gold);
}

.lang-switch {
  display: flex;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.25rem;
}

.lang-btn {
  border: 0;
  color: var(--text);
  background: transparent;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--gold);
  color: #24242a;
  font-weight: 700;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 7rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -24% auto;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(215, 192, 138, 0.34) 0%, rgba(215, 192, 138, 0.06) 45%, transparent 72%);
  filter: blur(12px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(1000px 520px at 72% 22%, rgba(224, 206, 160, 0.18), transparent 60%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.8) brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(13, 14, 20, 0.88) 8%, rgba(13, 14, 20, 0.5) 46%, rgba(13, 14, 20, 0.76) 100%),
    linear-gradient(to top, rgba(12, 13, 18, 0.8) 0%, rgba(12, 13, 18, 0.06) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(1.1rem, 2.2vw, 1.8rem);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(130deg, rgba(12, 13, 18, 0.97), rgba(20, 22, 30, 0.92));
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s linear;
}

@media (min-width: 981px) {
  .hero-content {
    margin-top: clamp(5.5rem, 11vh, 8.5rem);
  }
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0.65;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-strong);
  font-weight: 600;
  margin-top: 0;
}

.name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.9rem);
  line-height: 1.08;
  margin: 0.5rem 0 1rem;
  color: var(--text);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}

.name-nowrap {
  white-space: nowrap;
}

.subhead {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 58ch;
  text-wrap: balance;
}

.btn-primary {
  display: inline-block;
  margin-top: 1.2rem;
  color: #1f212c;
  text-decoration: none;
  background: var(--gold);
  font-weight: 700;
  padding: 0.85rem 1.15rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(215, 192, 138, 0.28);
}

.credibility {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #181b27 0%, #151826 100%);
}

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

.stat,
.service-card,
.content-card,
.cta-wrap {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.3rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.credibility .stat {
  background: linear-gradient(180deg, rgba(37, 42, 60, 0.9), rgba(31, 35, 52, 0.92));
  border: 1px solid rgba(168, 177, 208, 0.22);
  border-radius: 14px;
  padding: 1rem 0.95rem;
  box-shadow: 0 8px 22px rgba(6, 9, 18, 0.34);
}

.credibility .stat h3 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  line-height: 1.25;
  color: #e2c98f;
}

.credibility .stat p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
  color: #d7dced;
}

.stat:hover,
.service-card:hover,
.content-card:hover,
.cta-wrap:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 192, 138, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.stat h3,
.service-card h3 {
  margin-top: 0;
  color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
}

.profile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.profile-visual:hover img {
  transform: scale(1.02);
  filter: contrast(1.04);
}

.content-card p {
  color: var(--text-soft);
  line-height: 1.75;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  margin: 0 0 1.4rem;
  color: var(--gold-strong);
}

.cards .service-card p {
  color: var(--text-soft);
}

.timeline {
  border-left: 2px solid var(--line);
  margin-left: 0.75rem;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 1rem;
  margin: 0 0 1.6rem 0.5rem;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(215, 192, 138, 0.18);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.timeline-item h3 {
  margin: 0 0 0.4rem;
  color: var(--gold-strong);
}

.timeline-item p {
  margin: 0;
  color: var(--text-soft);
}

.cta {
  background: radial-gradient(circle at 20% 0%, rgba(215, 192, 138, 0.16), transparent 40%), #1b1d27;
}

.cta h2 {
  margin-top: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-grid a {
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  padding: 0.9rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 192, 138, 0.6);
  background: rgba(215, 192, 138, 0.12);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #171922;
}

.footer-wrap {
  padding: 1.15rem 0;
  text-align: center;
  color: var(--text-dim);
}

.lang {
  display: none;
}

.lang.active {
  display: block;
}

.lang-copy {
  display: none;
}

.lang-copy.active {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(14, 16, 24, 0.78);
    backdrop-filter: blur(12px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .main-nav {
    display: none;
  }

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

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

  .credibility .grid-3 {
    gap: 0.65rem;
  }

  .credibility .stat {
    border-radius: 12px;
    padding: 0.9rem 0.82rem;
  }

  .credibility .stat h3 {
    font-size: 0.98rem;
  }

  .credibility .stat p {
    font-size: 0.9rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 96vh;
    padding-top: 5.8rem;
    align-items: start;
  }

  .hero-overlay {
    background:
      linear-gradient(115deg, rgba(10, 12, 17, 0.86) 5%, rgba(10, 12, 17, 0.48) 46%, rgba(10, 12, 17, 0.78) 100%),
      linear-gradient(to top, rgba(10, 12, 17, 0.9) 0%, rgba(10, 12, 17, 0.16) 50%);
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero-media {
    background: #11131a;
  }

  .hero-media video {
    object-fit: contain;
    object-position: center 18%;
    transform: scale(1.04);
  }

  .hero-content {
    margin-inline: auto;
    width: min(92%, 560px);
    margin-top: clamp(11.5rem, 28vh, 15.5rem);
    padding: 1.2rem 1rem 1.1rem;
    border-radius: 16px;
    border-color: rgba(255, 255, 255, 0.24);
    background: linear-gradient(135deg, rgba(16, 18, 26, 0.72), rgba(26, 29, 39, 0.42));
    backdrop-filter: blur(5px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  }

  .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.17em;
  }

  .name {
    font-size: clamp(1.7rem, 7.1vw, 2.35rem);
    line-height: 1.05;
    margin: 0.45rem 0 0.72rem;
    text-wrap: balance;
  }

  .name-nowrap {
    white-space: normal;
  }


  .subhead {
    font-size: 1rem;
    line-height: 1.58;
    max-width: 34ch;
    color: #f2ebdb;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    border-radius: 12px;
    padding: 0.82rem 1rem;
  }
}
