:root {
  --green: #f2c300;
  --green-dark: #111111;
  --green-light: #fff7cc;
  --sand: #ffffff;
  --orange: #f2c300;
  --text: #111111;
  --muted: #555555;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  --radius: 20px;
}

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

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.10);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; flex: 0 1 auto; }
.brand-logo { display: block; width: clamp(190px, 28vw, 300px); height: auto; }

.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 700; }
.nav-links a:hover { color: #b89400; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 22px;
  border-radius: 999px; border: 0;
  font-weight: 800; cursor: pointer;
  transition: .2s ease;
}
.btn-primary { background: var(--orange); color: var(--green-dark); box-shadow: 0 12px 24px rgba(0,0,0,.18); }
.btn-primary:hover { transform: translateY(-2px); background: #ddb200; }
.btn-secondary { background: var(--white); color: var(--green-dark); border: 1px solid rgba(0,0,0,.22); }
.btn-secondary:hover { transform: translateY(-2px); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  background:
    radial-gradient(circle at 90% 10%, rgba(242,195,0,.30), transparent 28%),
    linear-gradient(135deg, var(--sand), var(--green-light));
}
.hero::after {
  content: "";
  position: absolute; inset: auto -80px -150px auto;
  width: 360px; height: 360px; border-radius: 50%;
  border: 60px solid rgba(0,0,0,.06);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.eyebrow { color: #8a6f00; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; }
h1 { margin: 14px 0 20px; font-size: clamp(42px, 6vw, 72px); line-height: 1.04; letter-spacing: -.04em; }
h1 span { color: #b89400; }
.lead { max-width: 680px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 18px; color: var(--green-dark); font-size: 14px; font-weight: 750; }
.trust span::before { content: "✓"; margin-right: 7px; color: var(--orange); }

.service-card {
  position: relative;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 30px;
}
.service-card h2 { margin: 0 0 18px; font-size: 24px; }
.quick-list { display: grid; gap: 12px; }
.quick-item { display: flex; gap: 13px; align-items: center; padding: 13px 15px; border-radius: 14px; background: var(--green-light); font-weight: 750; }
.icon {
  flex: 0 0 38px; width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center; background: var(--green); color: var(--green-dark); font-size: 18px;
}

section { padding: 84px 0; }
.section-muted { background: var(--green-light); }
.section-head { max-width: 720px; margin-bottom: 38px; }
.section-head h2 { margin: 6px 0 12px; font-size: clamp(32px, 4vw, 48px); letter-spacing: -.03em; }
.section-head p { margin: 0; color: var(--muted); font-size: 17px; }

.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  border-radius: var(--radius); padding: 26px;
  background: var(--white); border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.card h3 { margin: 18px 0 8px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }

.about { background: var(--green-dark); color: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about h2 { font-size: clamp(34px, 4vw, 50px); line-height: 1.1; margin: 0 0 18px; }
.about p { color: rgba(255,255,255,.76); font-size: 17px; }
.eyebrow-on-dark { color: #f2c300; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.fact { padding: 22px; border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10); }
.fact strong { display: block; font-size: 28px; color: var(--green); }
.fact span { color: rgba(255,255,255,.76); }

.contact-wrap {
  display: grid; grid-template-columns: 1fr .9fr; gap: 28px;
  padding: 38px; border-radius: 28px;
  background: linear-gradient(135deg, var(--green-light), var(--sand));
  border: 1px solid rgba(0,0,0,.10);
}
.contact-wrap h2 { margin: 0 0 12px; font-size: clamp(32px, 4vw, 46px); }
.contact-wrap p { color: var(--muted); }
.contact-box { background: var(--white); border-radius: 20px; padding: 24px; box-shadow: var(--shadow); }
.contact-line { padding: 13px 0; border-bottom: 1px solid #edf0ee; }
.contact-line:last-child { border-bottom: 0; }
.contact-line small { display: block; color: var(--muted); }
.contact-line strong { font-size: 17px; }

.legal-page { min-height: calc(100vh - 129px); }
.legal-content { max-width: 760px; }
.legal-content h1 { font-size: clamp(36px, 5vw, 56px); }
.legal-content h2 { margin: 42px 0 14px; font-size: clamp(26px, 3vw, 34px); line-height: 1.18; letter-spacing: -.02em; }
.legal-content h3 { margin: 28px 0 10px; font-size: 20px; line-height: 1.25; }
.legal-content p { color: var(--muted); font-size: 17px; }
.legal-content ul { margin: 0 0 20px; padding-left: 24px; color: var(--muted); font-size: 17px; }
.legal-content li { margin: 8px 0; }
.legal-content dl { margin: 0; display: grid; gap: 18px; }
.legal-content dt { font-weight: 800; }
.legal-content dd { margin: 6px 0 0; color: var(--muted); font-size: 17px; }
.legal-content a { color: #8a6f00; font-weight: 700; }
.legal-notice { text-transform: uppercase; }

footer { padding: 26px 0; border-top: 1px solid #edf0ee; color: var(--muted); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .nav-links a:not(.btn) { display: none; }
  .hero-grid, .about-grid, .contact-wrap { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 68px; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .services, .facts { grid-template-columns: 1fr; }
  .nav-links .btn { min-height: 42px; padding: 0 15px; font-size: 13px; }
  .nav { gap: 10px; }
  .brand-logo { width: clamp(150px, 48vw, 180px); }
  .service-card, .contact-wrap { padding: 24px; }
  section { padding: 64px 0; }
}
