:root {
  --bg: #07090e;
  --bg-deep: #0b1220;
  --surface: rgba(12, 17, 27, 0.9);
  --surface-alt: rgba(16, 22, 34, 0.92);
  --border: rgba(212, 175, 55, 0.16);
  --border-strong: rgba(212, 175, 55, 0.32);
  --text: #f4efe3;
  --text-soft: rgba(244, 239, 227, 0.78);
  --accent: #d4af37;
  --accent-soft: #f0d88f;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --container: 1240px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 22%, rgba(12, 43, 84, 0.34), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-deep) 52%, #10141b 100%);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 86%);
}

.page-shell {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  margin-bottom: 32px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 92px;
  padding: 16px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 10, 15, 0.82);
  backdrop-filter: blur(14px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

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

.nav-cta {
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}

.hero-section,
.content-section {
  position: relative;
  margin-top: 28px;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.surface-alt {
  background: var(--surface-alt);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

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

.hero-mark-shell {
  position: relative;
  width: min(100%, 420px);
  min-height: 460px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
  overflow: hidden;
}

.hero-mark-shell::before,
.hero-mark-shell::after {
  content: "";
  position: absolute;
  inset: 14% 18%;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.hero-mark-shell::after {
  inset: 26% 29%;
}

.hero-mark-logo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(74%, 280px);
  height: auto;
  opacity: 0.18;
  filter: saturate(0.92);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-top: 18px;
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  line-height: 1.02;
}

.hero-copy p,
.section-heading p,
.content-card p,
.contact-copy p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.78;
}

.hero-copy p {
  max-width: 60ch;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.button-primary {
  color: #101010;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
}

.button-secondary {
  color: var(--text);
  background: transparent;
}

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

.section-heading h2,
.contact-copy h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.section-heading p {
  margin-top: 18px;
  max-width: 62ch;
}

.card-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

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

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(8, 12, 18, 0.72);
}

.content-card h3 {
  margin-top: 10px;
  font-size: 1.42rem;
  line-height: 1.18;
}

.content-card p {
  margin: 16px 0 0;
}

.card-index {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(8, 12, 18, 0.72);
}

.contact-copy {
  max-width: 700px;
}

.contact-copy p {
  margin: 18px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px 8px 0;
  color: var(--text-soft);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.site-footer strong,
.site-footer a {
  color: var(--text);
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
}

.site-footer span {
  font-size: 0.95rem;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 1080px) {
  .header-inner,
  .contact-panel,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .card-grid-three,
  .card-grid-two {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    order: 2;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--container));
    padding-top: 16px;
  }

  .header-inner {
    padding: 18px;
    border-radius: 28px;
  }

  .brand-logo {
    width: 190px;
  }

  .site-nav {
    gap: 16px;
  }

  .hero-section,
  .content-section {
    padding: 28px 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .button,
  .nav-cta {
    width: 100%;
  }

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

  .hero-mark-shell {
    min-height: 320px;
  }
}
