:root {
  --bg: #060606;
  --bg-soft: #101010;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --text: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.76);
  --line: rgba(207, 169, 84, 0.24);
  --accent: #c8a55a;
  --accent-2: #f0d48a;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --container: min(1180px, calc(100% - 2rem));
  --display: clamp(2.2rem, 4.2vw, 4rem);
  --h2: clamp(2rem, 4vw, 3.35rem);
  --h3: clamp(1.2rem, 2vw, 1.6rem);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at 75% 12%, rgba(200, 165, 90, 0.16), transparent 24%),
    radial-gradient(circle at 20% 30%, rgba(200, 165, 90, 0.07), transparent 22%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  line-height: 1.7;
}

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

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

button {
  font: inherit;
}

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

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

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

.brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  padding: 10px 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at center, rgba(200, 165, 90, 0.28), rgba(200, 165, 90, 0.03) 65%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 165, 90, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  position: relative;
  font-weight: 500;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lang-toggle,
.menu-toggle {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.lang-toggle {
  min-width: 92px;
  padding: 0.72rem 1rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--text);
}

.mobile-menu {
  display: none;
  width: var(--container);
  margin: 0 auto 1rem;
  padding: 0.5rem 0 1rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a:not(.button) {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

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

.button-gold {
  background: linear-gradient(135deg, #f0d48a 0%, #c8a55a 55%, #a67a28 100%);
  color: #16110b;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(200, 165, 90, 0.22);
}

.button-gold:hover {
  box-shadow: 0 14px 36px rgba(200, 165, 90, 0.28);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.button-outline:hover {
  border-color: rgba(200, 165, 90, 0.4);
  background: rgba(200, 165, 90, 0.06);
}

.full {
  width: 100%;
}

.section {
  padding: 6rem 0;
}

.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
}

.hero-grid,
.two-col,
.contact-grid,
.identity-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2.2rem;
}

.hero h1,
.section-heading h2 {
  margin: 0.35rem 0 1rem;
  font-family: var(--serif);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: var(--display);
  max-width: 9ch;
  line-height: 1.02;
}

.section-heading h2 {
  font-size: var(--h2);
  max-width: 14ch;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent);
}

.lead,
.content-block p,
.service-card p,
.identity-card p,
.contact-section p,
.contact-meta span,
.identity-list {
  color: var(--muted);
}

.lead {
  max-width: 50ch;
  font-size: 0.98rem;
}

.content-block {
  display: grid;
  gap: 1.25rem;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions {
  margin: 1.7rem 0 1.5rem;
}

.trust-row {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-row div {
  min-width: 148px;
}

.trust-row strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.trust-row span {
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.portrait-stage {
  position: relative;
  width: min(100%, 620px);
  min-height: 760px;
  overflow: hidden;
}

.portrait-glow {
  position: absolute;
  inset: auto 15% 8% 15%;
  height: 14%;
  background: radial-gradient(circle, rgba(200, 165, 90, 0.34), transparent 62%);
  filter: blur(22px);
  pointer-events: none;
}

.portrait-aura {
  position: absolute;
  inset: 12% 11% 18% 11%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(200, 165, 90, 0.22) 0%, rgba(200, 165, 90, 0.08) 36%, rgba(200, 165, 90, 0) 72%);
  filter: blur(18px);
  pointer-events: none;
}

.portrait-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 60px rgba(0, 0, 0, 0.42));
}

.section-dark::before,
.section-alt::before {
  content: "";
  position: absolute;
  inset: 1.25rem 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.025);
}

.section-dark,
.section-alt {
  position: relative;
}

.two-col,
.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.cards-grid,
.identity-grid {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid {
  gap: 4.5rem;
}

.identity-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.service-card,
.identity-card,
.contact-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.7rem;
}

.service-card:hover,
.identity-card:hover,
.contact-card:hover {
  background: var(--panel-strong);
}

.service-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.service-card h3 {
  margin: 0 0 0.8rem;
  font-size: var(--h3);
  font-family: var(--serif);
}

.identity-logo,
.footer-logo {
  width: auto;
  object-fit: contain;
}

.identity-logo {
  max-height: 210px;
  margin: 1rem 0 1.2rem;
}

.footer-logo {
  max-height: 52px;
}

.identity-list {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.identity-list li + li {
  margin-top: 0.5rem;
}

.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact-meta strong {
  color: var(--text);
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-wrap p {
  color: rgba(246, 241, 232, 0.58);
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .site-nav a::after {
    transition: none !important;
  }

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

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .identity-grid,
  .cards-grid,
  .contact-meta {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .hero h1,
  .section-heading h2 {
    max-width: none;
  }

  .hero-grid {
    gap: 1.6rem;
  }

  .portrait-stage {
    min-height: 620px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.5rem 0;
  }

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

  .brand-logo {
    height: 54px;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-actions,
  .trust-row,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .lang-toggle {
    width: 100%;
  }

  .portrait-stage {
    min-height: 500px;
  }
}
