:root {
  --bg: #0b0b0f;
  --ink: #ffffff;
  --muted: #d7d7dc;
  --soft: #f6f4ef;
  --gold: #c6a15b;
  --blue: #02344a;
  --red: #990000;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: #222; background: #fff; line-height: 1.6; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 32px; background: rgba(0, 0, 0, .88); backdrop-filter: blur(10px); }
.brand { color: #fff; text-decoration: none; font-size: 24px; font-weight: 700; letter-spacing: .03em; }
.site-header nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.site-header nav a { color: #fff; text-decoration: none; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.site-header nav a:last-child { border: 1px solid var(--gold); padding: 10px 14px; }

.hero { position: relative; min-height: 76vh; display: flex; align-items: center; overflow: hidden; background: #050507; color: #fff; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.48), rgba(0,0,0,.22)); z-index: 1; }
.hero .container { max-width: 900px; margin-left: max(32px, calc((100% - var(--max)) / 2)); position: relative; z-index: 2; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; color: var(--gold); font-weight: 700; font-size: 13px; margin: 0 0 14px; }
.hero h1 { font-size: clamp(42px, 6vw, 76px); line-height: 1.05; margin: 0 0 22px; max-width: 900px; }
.hero p { font-size: 20px; max-width: 740px; color: #f1f1f1; margin: 0 0 28px; }
.actions { display: flex; gap: 16px; flex-wrap: wrap; }
.button { display: inline-block; text-decoration: none; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; font-size: 13px; padding: 14px 22px; border: 1px solid var(--gold); }
.button.primary { background: var(--gold); color: #000; }
.button.secondary { color: #fff; }
.button.dark-text { color: #111; }

.trust-strip { background: #050507; color: #fff; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.trust-grid div { padding: 26px 24px; background: rgba(255,255,255,.04); }
.trust-grid strong { display: block; font-size: 20px; margin-bottom: 4px; }
.trust-grid span { color: #cfcfd6; font-size: 14px; }

.section { padding: 86px 0; background: #fff; }
.section.dark { background: #050507; color: #fff; }
.section h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.15; margin: 0 0 18px; }
.section p { font-size: 18px; max-width: 760px; color: #555; }
.section.dark p { color: #d7d7dc; }
.section-heading { text-align: center; max-width: 860px; }
.section-heading p { margin-left: auto; margin-right: auto; }

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.path-card { padding: 32px; border: 1px solid #e5e1d8; background: #fbfaf7; min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; }
.path-card h3 { font-size: 26px; line-height: 1.2; margin: 0 0 14px; }
.path-card p { font-size: 16px; color: #555; }
.text-link { color: #111; font-weight: 700; text-decoration-color: var(--gold); text-underline-offset: 5px; }

.feature-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.feature-panel { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05); padding: 34px; }
.feature-panel ul { margin: 0; padding-left: 20px; color: #fff; font-size: 18px; }
.feature-panel li + li { margin-top: 14px; }

.area-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 34px; }
.area-grid span { padding: 16px 14px; border: 1px solid #e5e1d8; background: #fbfaf7; text-align: center; font-weight: 700; }

.about-section { background: #f7f5ef; }
.about-grid { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: center; }
.profile-card { background: #050507; color: #fff; padding: 34px; text-align: center; }
.profile-mark { width: 120px; height: 120px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; font-size: 38px; color: var(--gold); font-weight: 700; }
.profile-card p { color: #fff; font-size: 16px; margin: 0; }

.contact-section { background: #fff; }
.contact-card { text-align: center; max-width: 900px; padding: 56px 34px; border: 1px solid #e5e1d8; background: #fbfaf7; }
.contact-card p { margin-left: auto; margin-right: auto; }
.center-actions { justify-content: center; }

footer { padding: 28px 0; background: #000; color: #aaa; font-size: 14px; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-grid a { color: #fff; }

@media (max-width: 900px) {
  .path-grid, .trust-grid, .feature-grid, .about-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header { position: relative; align-items: flex-start; flex-direction: column; padding: 18px 20px; }
  .site-header nav { gap: 14px; }
  .hero { min-height: 72vh; padding: 88px 0; }
  .hero .container { margin: 0 auto; }
  .hero p { font-size: 18px; }
  .section { padding: 58px 0; }
  .area-grid { grid-template-columns: 1fr; }
}
