:root {
  --bg: #f3efe7;
  --bg-2: #e8ddca;
  --panel: #ffffff;
  --panel-2: #111111;
  --text: #111111;
  --muted: #555555;
  --soft: #6b6b6b;
  --accent: #b2834f;
  --accent-2: #7a5a37;
  --line: rgba(17,17,17,.1);
  --line-2: rgba(255,255,255,.12);
  --radius: 28px;
  --shadow: 0 18px 70px rgba(17,17,17,.08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section { position: relative; padding: 108px 0; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  border-bottom: 1px solid rgba(17,17,17,.07);
  background: rgba(243,239,231,.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand img {
  width: 118px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  color: var(--muted);
}

.nav a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 148px;
  background:
    radial-gradient(circle at 10% 10%, rgba(178,131,79,.14), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(122,90,55,.10), transparent 25%),
    linear-gradient(180deg, #f4f0e8 0%, #efe8db 100%);
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(122,90,55,.15);
}

.hero-orbit-a {
  width: 700px;
  height: 700px;
  top: -220px;
  right: -180px;
}

.hero-orbit-b {
  width: 420px;
  height: 420px;
  left: -150px;
  bottom: -120px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
  letter-spacing: -.05em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -.045em;
  margin-bottom: 22px;
}

h3 {
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.hero-lead {
  max-width: 760px;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions.center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #111111, #3a2a1a);
  box-shadow: 0 16px 38px rgba(17,17,17,.16);
}

.btn-secondary {
  border: 1px solid rgba(17,17,17,.14);
  color: var(--text);
  background: rgba(255,255,255,.6);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

.trust-line span {
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.55);
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.76));
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  max-width: 330px;
  margin: 0 auto 22px;
}

.hero-card p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: start;
}

.rich-text {
  color: var(--soft);
  font-size: 19px;
}

.rich-text p { margin-bottom: 20px; }

.section-contrast {
  background: linear-gradient(180deg, #18120e 0%, #1f1712 100%);
  color: #fff;
}

.section-contrast .section-heading p,
.section-contrast .card p {
  color: rgba(255,255,255,.72);
}

.section-heading {
  max-width: 780px;
  text-align: center;
  margin-bottom: 48px;
}

.section-heading.align-left { text-align: left; }
.section-heading.compact { max-width: 880px; }
.section-heading p { color: var(--muted); }

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

.card,
.entity-card,
.about-card,
.fact,
.cta-box,
.brands-panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow);
}

.section-contrast .card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-2);
  box-shadow: none;
}

.card {
  padding: 28px;
  border-radius: 24px;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(178,131,79,.4);
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 900;
}

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

.entity-card {
  padding: 34px;
  border-radius: 28px;
}

.label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 800;
}

.brands {
  background: linear-gradient(180deg, #f6f2ea 0%, #eee4d4 100%);
}

.brands-panel {
  padding: 36px;
  border-radius: 32px;
}

.brand-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 36px;
}

.brand-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brand-columns li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(17,17,17,.07);
  color: var(--text);
}

.disclaimer {
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 30px;
  align-items: stretch;
}

.about-card {
  border-radius: var(--radius);
  padding: clamp(34px, 5vw, 62px);
}

.facts { display: grid; gap: 18px; }

.fact {
  border-radius: 22px;
  padding: 24px;
}

.fact span {
  color: var(--accent-2);
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 8px;
}

.fact strong {
  display: block;
  font-size: 18px;
}

.cta {
  background: linear-gradient(180deg, #14110f 0%, #0f0d0c 100%);
  color: #fff;
  text-align: center;
}

.cta-box {
  border-radius: 36px;
  padding: clamp(38px, 7vw, 82px);
  max-width: 980px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: none;
}

.cta-box h2 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 19px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.72);
}

.contact-row {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.68);
}

.contact-row a:hover { color: #fff; }

.site-footer {
  border-top: 1px solid rgba(17,17,17,.08);
  padding: 28px 0;
  color: var(--muted);
  background: #eee5d6;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-grid a { color: var(--accent-2); }

@media (max-width: 1040px) {
  .hero-grid,
  .split,
  .about-grid,
  .entity-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }

  .nav {
    position: absolute;
    top: 84px;
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 22px;
    background: rgba(243,239,231,.98);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a { padding: 14px; }
  .section { padding: 88px 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-inner { min-height: 72px; }
  .brand img { width: 104px; }
  .nav { top: 72px; }
  .hero { padding-top: 118px; }
  .cards-grid,
  .brand-columns { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .trust-line span { width: 100%; }
  h1 { font-size: 40px; }
  h2 { font-size: 34px; }
  .section { padding: 72px 0; }
}
