:root {
  --bg: #120c09;
  --bg-soft: #1b120d;
  --panel: rgba(34, 21, 15, 0.88);
  --panel-2: rgba(27, 18, 13, 0.92);
  --gold: #d6a152;
  --gold-2: #f0c97a;
  --gold-muted: #8e6734;
  --text: #f1e7d3;
  --text-soft: #ccbda3;
  --line: rgba(214, 161, 82, 0.25);
  --shadow: 0 16px 48px rgba(0,0,0,0.35);
  --radius: 20px;
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(214,161,82,0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(214,161,82,0.10), transparent 24%),
    linear-gradient(180deg, #160d09 0%, #0d0907 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: -999px;
}
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; color: #000; padding: .75rem 1rem; z-index: 9999; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,9,7,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 0;
}
.brand { display: flex; align-items: center; gap: .9rem; }
.brand img { width: 380px; height: 150px; object-fit: contain; }
.brand-title strong {
  display: block; font-size: 1.15rem; letter-spacing: .14em; font-weight: 700;
}
.brand-title span {
  display: block; color: var(--text-soft); font-size: .78rem; text-transform: uppercase; letter-spacing: .2em;
}
.nav-toggle { display: none; }
.nav-menu { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.nav-menu a {
  color: var(--text-soft); font-size: .95rem; letter-spacing: .06em; text-transform: uppercase;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold-2); }
.nav-cta {
  padding: .8rem 1rem; border: 1px solid rgba(240,201,122,0.35);
  border-radius: 999px; color: var(--gold-2) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
.hero {
  position: relative; overflow: hidden;
  padding: 5.5rem 0 4.5rem;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center;
}
.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid var(--line); color: var(--gold-2);
  border-radius: 999px; padding: .45rem .9rem; letter-spacing: .15em; text-transform: uppercase; font-size: .75rem;
  background: rgba(255,255,255,0.02);
}
.kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.hero h1, .page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 4.6rem); line-height: 1.04; margin: 1rem 0 1rem;
  letter-spacing: .02em;
}
.hero p.lead, .page-hero p.lead {
  font-size: 1.12rem; color: var(--text-soft); max-width: 52rem;
}
.button-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 1.3rem; border-radius: 999px; font-weight: 600; letter-spacing: .04em;
  border: 1px solid rgba(240,201,122,0.35); transition: .25s ease;
}
.btn-primary {
  background: linear-gradient(180deg, #f2cb80 0%, #c18b3f 100%); color: #221208;
  box-shadow: 0 12px 30px rgba(193,139,63,0.25);
}
.btn-secondary {
  background: rgba(255,255,255,0.02); color: var(--gold-2);
}
.btn:hover { transform: translateY(-2px); }
.hero-card, .panel {
  background: linear-gradient(180deg, rgba(36,22,16,0.92), rgba(19,12,9,0.92));
  border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow);
}
.hero-card { padding: 1.3rem; }
.hero-card .logo-stage {
  padding: 1.1rem; border-radius: 20px; border: 1px solid rgba(240,201,122,0.18);
  background: radial-gradient(circle at top right, rgba(240,201,122,.12), transparent 35%), linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}
.hero-card img { width: 100%; border-radius: 16px; }
.stat-grid, .card-grid, .value-grid, .media-grid { display: grid; gap: 1.2rem; }
.stat-grid { grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.stat {
  padding: 1.2rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.02);
}
.stat strong { display: block; font-size: 1.65rem; color: var(--gold-2); }
.stat span { color: var(--text-soft); font-size: .94rem; }
section { padding: 4.2rem 0; }
.section-head { max-width: 50rem; margin-bottom: 1.8rem; }
.section-head h2 {
  font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .8rem;
}
.section-head p { color: var(--text-soft); }
.card-grid { grid-template-columns: repeat(3, 1fr); }
.value-grid { grid-template-columns: repeat(4, 1fr); }
.media-grid { grid-template-columns: repeat(3, 1fr); }
.card, .value-card, .media-card, .contact-card {
  padding: 1.5rem; border-radius: 22px; background: var(--panel);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.card h3, .value-card h3, .media-card h3, .contact-card h3 { margin-top: 0; }
.eyebrow { color: var(--gold-2); text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; }
.list-clean { list-style: none; padding: 0; margin: 1rem 0 0; }
.list-clean li { padding: .45rem 0 .45rem 1.3rem; position: relative; color: var(--text-soft); }
.list-clean li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  position: absolute; left: 0; top: .9rem;
}
.band {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start;
}
.callout {
  padding: 1.5rem; border-left: 4px solid var(--gold); background: rgba(255,255,255,0.02); border-radius: 12px;
  color: var(--text-soft);
}
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; margin-bottom: .35rem; color: var(--text-soft); font-size: .92rem; }
input, textarea {
  width: 100%; padding: .95rem 1rem; border-radius: 14px; border: 1px solid rgba(240,201,122,0.18);
  background: rgba(255,255,255,0.02); color: var(--text); font: inherit;
}
textarea { min-height: 170px; resize: vertical; }
input:focus, textarea:focus { outline: 1px solid rgba(240,201,122,0.35); }
.page-hero {
  padding: 4rem 0 2.2rem; border-bottom: 1px solid var(--line);
}
.page-hero .crumb { color: var(--gold-2); text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; }
.legal { max-width: 900px; }
.legal h2 { margin-top: 2rem; font-family: Georgia, serif; }
.footer {
  margin-top: 3rem; border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr .7fr .8fr .9fr; gap: 1.5rem; padding: 3rem 0 2rem;
}
.footer-brand img { width: 100px; }
.footer-brand .brand-wrap { display:flex; gap:.9rem; align-items:center; margin-bottom: 1rem; }
.footer h4 { margin-top: 0; color: var(--gold-2); }
.footer ul { list-style:none; padding:0; margin:0; }
.footer li { margin: .45rem 0; color: var(--text-soft); }
.footer a:hover { color: var(--gold-2); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 1rem 0 2rem; color: var(--text-soft);
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap;
}
.float-links {
  position: fixed; right: 18px; bottom: 18px; display: flex; flex-direction: column; gap: .75rem; z-index: 60;
}
.float-links a {
  width: 54px; height: 54px; border-radius: 50%; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(180deg, #f2cb80 0%, #c18b3f 100%); color:#1f130a; font-weight:700;
  box-shadow: 0 12px 30px rgba(193,139,63,0.3);
}
.notice {
  margin-top: 1.2rem; padding: 1rem 1.1rem; border-radius: 14px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(240,201,122,0.16); color: var(--text-soft);
}
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .card-grid, .value-grid, .media-grid, .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .brand-title strong { font-size: .95rem; }
  .brand-title span { font-size: .68rem; }
  .nav-toggle {
    display: inline-flex; background: transparent; border: 1px solid var(--line); color: var(--gold-2);
    padding: .65rem .8rem; border-radius: 10px;
  }
  .nav-menu {
    display: none; position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem);
    background: rgba(13,9,7,0.98); border: 1px solid var(--line); border-radius: 18px; padding: 1rem; flex-direction: column; align-items: flex-start;
  }
  .nav-menu.open { display: flex; }
  .card-grid, .value-grid, .media-grid, .stat-grid, .form-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 3.5rem; }
}
