:root {
  --navy: #07131f;
  --navy-2: #0d2136;
  --forest: #163528;
  --gold: #c9a54a;
  --gold-2: #e8d39a;
  --cream: #f4efe4;
  --muted: #b7c2ce;
  --line: rgba(201, 165, 74, 0.28);
  --card: rgba(13, 33, 54, 0.72);
  --font: "Manrope", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.starfield {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(1px 1px at 12% 18%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 28% 72%, #fff 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 66% 22%, var(--gold-2) 50%, transparent 51%),
    radial-gradient(1px 1px at 81% 58%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 44% 40%, #fff 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 91% 12%, var(--gold) 50%, transparent 51%),
    radial-gradient(1px 1px at 8% 88%, #fff 50%, transparent 51%);
  opacity: 0.35;
}
main, header, footer { position: relative; z-index: 1; }

.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 19, 31, 0.78);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.35rem; letter-spacing: 0.04em; }
.logo__mark { color: var(--gold); }
.nav { display: flex; gap: 22px; font-size: 0.92rem; color: var(--muted); }
.nav a:hover { color: var(--gold-2); }
.header__actions { display: flex; align-items: center; gap: 14px; }
.lang { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang__btn {
  background: transparent; color: var(--muted); border: 0; padding: 6px 12px;
  cursor: pointer; font: inherit; font-size: 0.78rem; letter-spacing: 0.08em;
}
.lang__btn.is-active { background: var(--gold); color: var(--navy); font-weight: 700; }
.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; border-radius: 8px; cursor: pointer; }
.burger span, .burger span::before, .burger span::after {
  display: block; width: 18px; height: 1.5px; background: var(--cream); margin: auto; position: relative;
}
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; letter-spacing: 0.02em; cursor: pointer; transition: 0.25s ease;
}
.btn--gold { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: var(--navy); }
.btn--gold:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(201,165,74,0.25); }
.btn--ghost { border-color: var(--line); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn--sm { padding: 8px 16px; font-size: 0.88rem; }

.hero { padding: 72px 0 88px; position: relative; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,19,31,0.2), rgba(7,19,31,0.92)),
    url("forest.jpg") center/cover;
  opacity: 0.28; z-index: -1;
}
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.76rem; margin-bottom: 14px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); margin-bottom: 18px; }
h2 { font-size: clamp(2rem, 3.4vw, 3.1rem); margin-bottom: 16px; }
h3 { font-size: 1.45rem; margin-bottom: 8px; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 54ch; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 36px; }
.hero__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hero__facts dt { font-family: var(--serif); font-size: 2rem; color: var(--gold-2); }
.hero__facts dd { color: var(--muted); font-size: 0.86rem; }
.hero__card {
  position: relative; border-radius: 28px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.hero__card img { height: 460px; width: 100%; object-fit: cover; }
.hero__card figcaption {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(7,19,31,0.82); backdrop-filter: blur(10px);
  padding: 18px; border-radius: 18px; border: 1px solid var(--line);
}
.hero__card span { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }

.strip { border-block: 1px solid var(--line); background: rgba(22,53,40,0.35); }
.strip__row {
  display: flex; gap: 28px; align-items: center; justify-content: space-between;
  padding: 22px 0; color: var(--gold-2); font-size: 0.92rem; flex-wrap: wrap;
}
.strip span { color: var(--gold); opacity: 0.6; }

.section { padding: 92px 0; }
.section--alt { background: linear-gradient(180deg, rgba(13,33,54,0.55), rgba(7,19,31,0.2)); }
.section__head { max-width: 720px; margin-bottom: 42px; }
.section__lead { color: var(--muted); }
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.split p + p { margin-top: 14px; color: var(--muted); }
blockquote {
  border-left: 2px solid var(--gold); padding: 8px 0 8px 18px;
  font-family: var(--serif); font-size: 1.45rem; font-style: italic; margin-bottom: 24px;
}
cite { display: block; margin-top: 10px; font-size: 0.95rem; color: var(--gold); font-style: normal; font-family: var(--font); }
.checklist { list-style: none; display: grid; gap: 10px; }
.checklist li { padding-left: 28px; position: relative; color: var(--muted); }
.checklist li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

.cards { display: grid; gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card, .person, .why__item {
  background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 28px;
}
.card__num { color: var(--gold); font-family: var(--serif); font-size: 1.4rem; }
.card ul, .card p { color: var(--muted); margin-top: 10px; }
.card ul { padding-left: 18px; display: grid; gap: 6px; }

.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mosaic__item { position: relative; min-height: 240px; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); }
.mosaic__item--lg { grid-column: span 2; grid-row: span 2; min-height: 500px; }
.mosaic__item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.mosaic__item div {
  position: absolute; inset: auto 0 0; padding: 18px;
  background: linear-gradient(transparent, rgba(7,19,31,0.92));
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; list-style: none; }
.steps li {
  background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 24px;
  counter-increment: step;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  color: var(--gold); font-family: var(--serif); font-size: 1.6rem; display: block; margin-bottom: 10px;
}

.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.person__role { color: var(--gold); font-size: 0.88rem; margin-bottom: 10px; }
.person p { color: var(--muted); }

.faq { display: grid; gap: 12px; max-width: 860px; }
details { border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px; background: var(--card); }
summary { cursor: pointer; font-weight: 600; }
details p { margin-top: 10px; color: var(--muted); }

.section--contact { background: radial-gradient(circle at 80% 20%, rgba(201,165,74,0.12), transparent 40%), var(--navy-2); }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact__list { list-style: none; display: grid; gap: 18px; margin-top: 28px; }
.contact__list span { display: block; color: var(--gold); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.contact__list a, .contact__list p { font-size: 1.15rem; }
.form { display: grid; gap: 14px; background: var(--card); border: 1px solid var(--line); padding: 28px; border-radius: 24px; }
.form label { display: grid; gap: 6px; font-size: 0.88rem; color: var(--muted); }
.form input, .form textarea {
  background: rgba(7,19,31,0.7); border: 1px solid var(--line); color: var(--cream);
  border-radius: 12px; padding: 12px 14px; font: inherit;
}
.form input:focus, .form textarea:focus { outline: 1px solid var(--gold); }
.form__ok { color: var(--gold-2); }

.footer { border-top: 1px solid var(--line); padding: 48px 0 24px; color: var(--muted); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 28px; }
.footer h3 { font-size: 1.1rem; color: var(--cream); }
.footer a, .footer p { display: block; margin-top: 8px; }
.footer__copy { text-align: center; font-size: 0.86rem; border-top: 1px solid var(--line); padding-top: 18px; }

.reveal { opacity: 0; transform: translateY(18px); animation: rise 0.7s ease forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .hero__grid, .split, .cards--3, .steps, .contact, .footer__grid, .mosaic { grid-template-columns: 1fr; }
  .mosaic__item--lg { grid-column: auto; grid-row: auto; min-height: 280px; }
  .nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--navy-2); flex-direction: column; padding: 18px 24px; border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .burger { display: grid; place-items: center; }
  .header .btn--sm { display: none; }
  .header__inner { min-height: 68px; }
  .hero__card img { height: 320px; }
}
