:root {
  --gold: #c59a3a;
  --gold-bright: #e0c178;
  --gold-deep: #9a7424;
  --ink: #101010;
  --ink-2: #1c1c1c;
  --paper: #f6f2ea;
  --paper-2: #eee8db;
  --white: #ffffff;
  --muted: #5e584e;
  --line: rgba(197, 154, 58, 0.35);
  --red: #c4161c;
  --shadow: 0 18px 50px rgba(16, 16, 16, 0.12);
  --radius: 18px;
  --max: 1180px;
  --header: 82px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(16, 16, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 154, 58, 0.25);
}

.site-header .wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}
.brand img { width: 210px; height: auto; }
.brand .mark { width: 42px; height: 42px; display: none; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  color: #efe8d8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
}
.nav a:hover,
.nav a.is-active {
  color: var(--gold-bright);
  background: rgba(197, 154, 58, 0.12);
}

.header-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 10px 18px !important;
}
.header-cta:hover { background: var(--gold-bright) !important; color: var(--ink) !important; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-bright);
  position: relative;
  margin: 0 auto;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  background: #0b0b0b center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.88) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.45), transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  padding: 72px 0 80px;
  text-align: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px 4px 999px 4px;
}
.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin: 22px 0 8px;
  text-transform: uppercase;
}
.hero h1 span { color: var(--gold-bright); }
.hero .tag {
  font-size: clamp(16px, 2vw, 20px);
  color: #efe8d8;
  max-width: 720px;
  margin: 0 auto 28px;
}
.since {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 13px;
  margin-bottom: 28px;
}
.since::before,
.since::after {
  content: "";
  width: 56px;
  height: 3px;
  background: var(--red);
}

.actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }

/* Layout helpers */
.section { padding: 84px 0; position: relative; }
.section.alt { background: var(--white); }
.section.dark {
  background: var(--ink);
  color: #efe8d8;
}
.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 14px;
}
.gold-bar {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px 28px 4px 4px;
  margin-bottom: 18px;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
}
.section.dark .lead { color: #cfc6b4; }
.eyebrow {
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.grid-2, .grid-3, .grid-4, .grid-6 {
  display: grid;
  gap: 22px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(3, 1fr); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: #fff;
}
.stat {
  padding: 32px 24px;
  border-right: 1px solid rgba(197,154,58,0.2);
  text-align: center;
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  color: var(--gold-bright);
  line-height: 1;
}
.stat span { color: #cfc6b4; font-size: 14px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #ddd;
}
.card .body { padding: 18px 18px 22px; }
.card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.card p { margin: 0; color: var(--muted); font-size: 15px; }

.value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.value .icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  font-size: 20px;
}
.value h3 { margin: 0 0 4px; font-size: 16px; }
.value p { margin: 0; color: var(--muted); font-size: 14px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.checklist li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(16,16,16,0.06);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 14px;
  background: var(--white);
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
}
.step b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
}
.step h3 { margin: 0 0 6px; font-size: 16px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.partner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 86px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--ink-2);
}

.gallery {
  columns: 3;
  column-gap: 14px;
}
.gallery a, .gallery img {
  width: 100%;
  border-radius: 14px;
  margin: 0 0 14px;
  break-inside: avoid;
  display: block;
}
.gallery img {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  position: relative;
}
.quote::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 92px;
  color: var(--gold);
  position: absolute;
  top: -8px;
  left: 18px;
  line-height: 1;
}
.quote p { margin: 28px 0 0; }
.portrait {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border: 6px solid var(--gold);
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(16,16,16,0.82), rgba(16,16,16,0.55)),
    var(--cta-image, #111) center/cover no-repeat;
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.cta-band .lead { color: #efe8d8; margin: 0 auto 22px; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.contact-card, .form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-item { margin: 0 0 18px; }
.contact-item small {
  display: block;
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}
.contact-item a, .contact-item p { margin: 4px 0 0; font-weight: 700; }
.form label { display: block; font-weight: 700; margin: 0 0 6px; font-size: 14px; }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid #ddd2bc;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fffdf8;
  margin-bottom: 14px;
}
.form textarea { min-height: 140px; resize: vertical; }
.form-note {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-weight: 700;
}
.form-note.ok { background: #e8f6ea; color: #145c28; }
.form-note.err { background: #fde8e8; color: #8a1515; }

.site-footer {
  background: #0b0b0b;
  color: #d8d0c2;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(197,154,58,0.18);
}
.site-footer h3 {
  color: var(--gold-bright);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.site-footer a:hover { color: var(--gold-bright); }
.site-footer .brand img { width: 200px; }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 13px;
  color: #8f8778;
}
.sub-badge {
  display: inline-block;
  margin-top: 14px;
  border: 1px solid var(--gold);
  padding: 10px 12px;
  border-radius: 12px;
}
.sub-badge b { color: #fff; display: block; }
.sub-badge span { color: var(--red); font-weight: 800; }

.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 30% 30%, var(--gold), transparent 65%);
  opacity: 0.4;
}

@media (max-width: 980px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #111;
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: block; }
  .brand img { width: 168px; }
  .grid-2, .grid-3, .grid-4, .grid-6, .stats, .steps, .split, .contact-grid, .footer-grid, .partners {
    grid-template-columns: 1fr 1fr;
  }
  .gallery { columns: 2; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-6, .stats, .steps, .split, .contact-grid, .footer-grid, .partners {
    grid-template-columns: 1fr;
  }
  .stat { border-right: 0; border-bottom: 1px solid rgba(197,154,58,0.2); }
  .gallery { columns: 1; }
  .hero { min-height: 78vh; }
  .section { padding: 56px 0; }
}
