:root {
  --ink-950: #1c1f26;
  --ink-900: #262a33;
  --ink-800: #363b47;
  --slate-600: #565e6c;
  --gold-500: #bd9542;
  --gold-600: #a17c34;
  --paper-50: #f7f6f2;
  --paper-100: #efeee6;
  --paper-200: #e2e0d3;
  --text-900: #1b1c20;
  --text-700: #46484f;
  --text-500: #6d6f77;
  --line: #ddd9ca;
  --white: #ffffff;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-1: 0 1px 2px rgba(28, 31, 38, 0.07), 0 1px 1px rgba(28, 31, 38, 0.04);
  --shadow-2: 0 14px 34px rgba(28, 31, 38, 0.16);
  --font-display: "Bitter", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, monospace;
  --max-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-900);
  background: var(--paper-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink-950);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--text-700); }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.7rem;
  color: var(--gold-600);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.94rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
  font-family: var(--font-body);
}
.btn-primary { background: var(--ink-950); color: var(--white); }
.btn-primary:hover { background: var(--gold-600); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink-950); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-950); }
.btn-on-dark { border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-on-dark:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 246, 242, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 40px; height: 40px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-950);
  line-height: 1.1;
}
.brand-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--text-500);
  text-transform: uppercase;
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-700);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.main-nav a:hover { color: var(--ink-950); background: var(--paper-100); }
.main-nav a.active { color: var(--ink-950); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--ink-950);
}

.hero { position: relative; background: var(--ink-950); color: var(--white); overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(65% 90% at 87% 6%, rgba(189, 149, 66, 0.3), transparent 60%),
    linear-gradient(180deg, rgba(28,31,38,0.6), rgba(28,31,38,0.93));
  z-index: 1;
}
.hero-media { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.5; }
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 124px 0 94px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
}
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.1vw, 3.45rem); max-width: 16ch; margin-bottom: 0.35em; }
.hero-eyebrow { color: var(--gold-500); margin-bottom: 18px; }
.hero p.lede { color: rgba(255,255,255,0.82); font-size: 1.06rem; max-width: 46ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-figures {
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-figure .num { font-family: var(--font-display); font-size: 2rem; color: var(--white); display: block; }
.hero-figure .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.strip { background: var(--paper-100); border-bottom: 1px solid var(--line); padding: 12px 0; }
.strip .wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-500);
}
.strip .icon { color: var(--gold-600); flex-shrink: 0; }

section { padding: 96px 0; }
.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }

.section-alt { background: var(--paper-100); }
.section-dark { background: var(--ink-950); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.72); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card { background: var(--paper-50); padding: 38px 32px; transition: background 0.2s ease; }
.service-card:hover { background: var(--white); }
.service-card .icon-wrap {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--ink-950); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.4rem;
}
.service-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; margin-bottom: 0; }

.process-list { display: flex; flex-direction: column; }
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-item .step { font-family: var(--font-mono); font-size: 0.82rem; color: var(--gold-600); padding-top: 4px; }
.process-item h3 { font-size: 1.12rem; margin-bottom: 6px; }
.process-item p { margin-bottom: 0; max-width: 60ch; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split img { border-radius: var(--radius-md); box-shadow: var(--shadow-2); width: 100%; height: 420px; object-fit: cover; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-top: 56px;
}
.stat { padding: 28px 24px; border-left: 1px solid rgba(255,255,255,0.15); }
.stat:first-child { border-left: none; }
.stat .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--white); display: block; margin-bottom: 6px; }
.stat .label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sector-item {
  background: var(--paper-50);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-700);
}
.sector-item .icon { color: var(--gold-500); font-size: 1.2rem; }

.cta-band { background: var(--slate-600); color: var(--white); padding: 64px 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 0; }

.site-footer { background: var(--ink-950); color: rgba(255,255,255,0.65); padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-logo { width: 36px; height: 36px; }
.footer-brand-name { font-family: var(--font-display); color: var(--white); font-size: 1.02rem; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; align-items: flex-start; }
.footer-contact-item .icon { margin-top: 3px; color: var(--gold-500); flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  max-width: 900px;
  margin-top: 18px;
  line-height: 1.6;
}

.page-header { background: var(--ink-950); color: var(--white); padding: 64px 0 56px; }
.page-header h1 { color: var(--white); margin-bottom: 8px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--white); }

.legal-body { max-width: 780px; }
.legal-body h2 {
  font-size: 1.3rem;
  margin-top: 2.2em;
  padding-top: 0.4em;
  border-top: 1px solid var(--line);
}
.legal-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-body ul { color: var(--text-700); padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-meta { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-500); margin-bottom: 40px; }
.legal-toc {
  background: var(--paper-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 44px;
}
.legal-toc h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-500);
  margin-bottom: 14px;
}
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 24px; }
.legal-toc li { margin-bottom: 8px; font-size: 0.9rem; }
.legal-toc a { color: var(--ink-900); }
.legal-toc a:hover { color: var(--gold-600); }

.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.value-item { display: flex; gap: 16px; }
.value-item .icon-wrap {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--paper-100); color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.2rem;
}
.value-item h3 { font-size: 1.02rem; margin-bottom: 4px; }
.value-item p { font-size: 0.92rem; margin-bottom: 0; }

.timeline { border-left: 2px solid var(--line); padding-left: 32px; display: flex; flex-direction: column; gap: 34px; }
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -38px; top: 4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-600);
  border: 2px solid var(--paper-50);
}
.timeline-item .year { font-family: var(--font-mono); color: var(--gold-600); font-size: 0.82rem; }
.timeline-item h3 { font-size: 1.05rem; margin: 4px 0 6px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px; margin-bottom: 20px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 16px; }
.contact-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.94rem; }
.contact-line .icon { color: var(--gold-600); margin-top: 3px; flex-shrink: 0; }
.contact-line a:hover { color: var(--gold-600); }
.hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 7px 0; border-top: 1px solid var(--paper-200); }
.hours-row:first-of-type { border-top: none; }

.map-frame { width: 100%; height: 220px; border-radius: var(--radius-md); border: 1px solid var(--line); overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text-900); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.94rem;
  background: var(--paper-50);
  color: var(--text-900);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-600); background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; color: var(--text-500); }
.field-check input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--gold-600); }
.form-note { font-size: 0.82rem; color: var(--text-500); margin-top: 18px; }
.form-success {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: #f2ede1;
  border: 1px solid #ded2b3;
  color: var(--ink-950);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.92rem;
}
.form-success.visible { display: flex; }
.form-success .icon { color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }

.info-banner {
  display: flex;
  gap: 14px;
  background: var(--paper-100);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--text-700);
  margin-bottom: 44px;
}
.info-banner .icon { color: var(--gold-500); flex-shrink: 0; margin-top: 2px; font-size: 1.2rem; }

.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-950);
}
.faq-q .icon { color: var(--gold-600); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a-inner { padding-bottom: 22px; color: var(--text-700); font-size: 0.94rem; max-width: 62ch; }
.faq-item.open .faq-a { max-height: 300px; }

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--ink-950);
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2);
  padding: 24px 26px;
  z-index: 100;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cookie-banner-head { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.cookie-banner-head .icon { color: var(--gold-500); font-size: 1.3rem; }
.cookie-banner-head h4 { color: var(--white); margin: 0; font-size: 0.98rem; }
.cookie-banner p { font-size: 0.86rem; color: rgba(255,255,255,0.68); margin-bottom: 18px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; font-size: 0.86rem; }
.cookie-actions .btn-text {
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 0.86rem; cursor: pointer; text-decoration: underline;
  font-family: var(--font-body);
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink-950);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
  font-size: 1.1rem;
}
.to-top.visible { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-2px); background: var(--gold-600); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 96px 0 64px; }
  .hero-figures { border-left: none; padding-left: 0; flex-direction: row; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 24px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split img { height: 300px; order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .value-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0; right: 0;
    background: var(--paper-50);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 2px;
  }
  section { padding: 64px 0; }
  .legal-toc ol { columns: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
