:root {
  --bg: #05070d;
  --line: rgba(207, 185, 123, 0.22);
  --line-strong: rgba(207, 185, 123, 0.55);
  --text: #f4f0ea;
  --muted: rgba(244, 240, 234, 0.76);
  --soft: rgba(244, 240, 234, 0.11);
  --gold: #cfb97b;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: radial-gradient(circle at top, #0a1020 0%, #05070d 45%, #020308 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  display: block;
  width: clamp(168px, 20vw, 250px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.08));
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.brand-tag::before {
  content: "";
  width: 1px;
  height: 28px;
  margin-right: 18px;
  background: var(--line-strong);
}

.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.site-nav a,
.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav a:hover,
.mobile-menu a:hover,
.site-nav a:focus-visible,
.mobile-menu a:focus-visible,
.hero-link:hover,
.contact-link:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

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

.mobile-menu {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 12px 0 6px;
  display: none;
  flex-direction: column;
  gap: 16px;
}

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

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  padding: 40px 16px 72px;
}

.hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-size: 0.74rem;
}

.eyebrow {
  margin: 0 0 26px;
  font-size: 0.82rem;
  letter-spacing: 0.36em;
}

.hero-subtitle {
  max-width: 980px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.34rem);
  line-height: 1.72;
}

.hero-link {
  margin-top: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.84rem;
  position: relative;
  padding-bottom: 60px;
}

.hero-divider {
  width: min(620px, 78vw);
  height: 1px;
  margin-top: 24px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  position: relative;
}

.hero-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(207, 185, 123, 0.7);
}

.hero-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--line-strong), transparent);
  transform: translateX(-50%);
}

.hero-visual {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18% 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 35%, rgba(255, 255, 255, 0) 72%);
  filter: blur(14px);
}

.hero-logo {
  display: block;
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 26px rgba(255, 255, 255, 0.09));
}

.content-section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 72px 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.content-section h2 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 500;
}

.content-section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.strategy-list {
  margin: 10px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.strategy-list li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--soft);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text);
}

.card p {
  margin: 0;
}

.quote-block {
  text-align: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.quote-block p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  line-height: 1.3;
}

.quote-block .quote-note {
  margin-top: 10px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-block {
  padding-bottom: 90px;
}

.contact-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.08em;
}

@media (min-width: 921px) {
  .mobile-menu,
  .mobile-menu.is-open {
    display: none !important;
  }
}

@media (max-width: 920px) {
  .site-nav {
    display: none;
  }

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

  .two-col,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-logo {
    width: min(1000px, 96vw);
  }

  .hero-subtitle {
    max-width: 92%;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 14px;
  }

  .brand-logo {
    width: 170px;
  }

  .brand-tag {
    font-size: 0.68rem;
    letter-spacing: 0.34em;
  }

  .brand-tag::before {
    height: 22px;
    margin-right: 12px;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-logo {
    width: min(96vw, 680px);
  }

  .card {
    padding: 22px;
  }

  .content-section {
    padding: 56px 0;
  }

  .eyebrow,
  .section-label,
  .site-nav a,
  .mobile-menu a,
  .hero-link,
  .brand-tag {
    letter-spacing: 0.2em;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.8;
  }
}
