:root {
  --bg: #0d0d0f;
  --bg-soft: #151518;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.08);
  --text: #f5f1ea;
  --muted: rgba(245, 241, 234, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d9b36c;
  --gold-strong: #f2cf91;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(217, 179, 108, 0.12), transparent 32%),
    linear-gradient(180deg, #111114 0%, #0d0d0f 48%, #09090b 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 12, 0.72);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(217, 179, 108, 0.42);
  background: linear-gradient(135deg, rgba(217, 179, 108, 0.18), rgba(255, 255, 255, 0.04));
  color: var(--gold-strong);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-sub {
  margin-top: 0.14rem;
  font-size: 0.75rem;
  color: rgba(245, 241, 234, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

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

.site-nav a {
  color: rgba(245, 241, 234, 0.86);
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #18140d;
  box-shadow: 0 16px 40px rgba(217, 179, 108, 0.24);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.nav-cta {
  margin-left: 0.35rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero-section {
  padding: 7rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text {
  max-width: 700px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.6rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 241, 234, 0.84);
  font-size: 0.94rem;
}

.hero-card {
  position: relative;
}

.glass-panel {
  position: relative;
  padding: 2rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(242, 207, 145, 0.14), transparent 30%),
    rgba(20, 20, 22, 0.78);
  box-shadow: var(--shadow);
}

.panel-label {
  color: var(--gold-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
}

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

.stat-grid div {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.stat-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.98rem;
}

.stat-grid span {
  color: rgba(245, 241, 234, 0.67);
  font-size: 0.92rem;
}

.trust-strip {
  padding: 0 0 2rem;
}

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

.trust-grid div {
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.trust-grid span {
  color: rgba(245, 241, 234, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-grid {
  display: grid;
  gap: 2rem;
}

.section-grid-about {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.feature-panel,
.info-card,
.cta-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card);
  box-shadow: var(--shadow);
}

.feature-panel {
  padding: 2rem;
}

.feature-list {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 0.8rem;
}

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

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

.info-card {
  padding: 1.7rem;
}

.card-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold-strong);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.section-grid-experience {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.visual-frame {
  position: relative;
  min-height: 430px;
  padding: 2rem;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(18, 18, 20, 0.88);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.glow-one {
  width: 230px;
  height: 230px;
  top: 25px;
  right: -35px;
  background: rgba(217, 179, 108, 0.25);
}

.glow-two {
  width: 170px;
  height: 170px;
  bottom: 18px;
  left: -25px;
  background: rgba(242, 207, 145, 0.14);
}

.visual-copy {
  position: absolute;
  inset: auto 2rem 2rem 2rem;
  max-width: 420px;
}

.value-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.value-list article {
  padding: 1.2rem 1.2rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

.site-footer {
  padding: 3rem 0 1.2rem;
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 10, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.footer-copy {
  max-width: 650px;
}

.footer-links {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
}

.footer-links a {
  color: rgba(245, 241, 234, 0.82);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-strong);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 241, 234, 0.58);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(13, 13, 15, 0.97);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero-grid,
  .section-grid-about,
  .section-grid-experience,
  .cta-panel,
  .footer-grid,
  .card-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .hero-section {
    padding-top: 5.75rem;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .glass-panel,
  .feature-panel,
  .info-card,
  .cta-panel,
  .visual-frame {
    padding: 1.35rem;
  }

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  max-width: 720px;
}

.hero-points li {
  width: 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 640px) {
  .hero-points {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  flex-shrink: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}