:root {
  --bg: #f7f3ea;
  --surface: #fffaf0;
  --surface-2: #ffffff;
  --text: #1f2933;
  --muted: #637083;
  --line: rgba(31, 41, 51, 0.12);
  --accent: #e5b84c;
  --accent-dark: #a36f1c;
  --ink: #18202b;
  --shadow: 0 24px 60px rgba(31, 41, 51, 0.12);
  --radius: 28px;
}

* { 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: radial-gradient(circle at top left, rgba(229, 184, 76, 0.22), transparent 32rem), var(--bg);
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 243, 234, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ink);
}

.brand img { width: 58px; height: 58px; object-fit: contain; }

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

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  padding: 10px 14px;
  border-radius: 999px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: rgba(229, 184, 76, 0.18);
  color: var(--ink);
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(70px, 10vw, 140px) clamp(20px, 5vw, 72px);
}

.hero-content,
.page-hero,
.section,
.legal-content {
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

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

h1 {
  max-width: 940px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.55rem, 6vw, 5.85rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h2 {
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h3 {
  color: var(--ink);
  font-size: 1.15rem;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
}

.button.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 30px rgba(31, 41, 51, 0.2);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.hero-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero-card > div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.hero-card > div:last-child { padding-bottom: 0; border-bottom: 0; }

.hero-card strong { display: block; color: var(--ink); font-size: 1.08rem; margin-bottom: 5px; }
.hero-card p { color: var(--muted); margin-bottom: 0; }
.card-number { display: block; color: var(--accent-dark); font-weight: 850; margin-bottom: 8px; }

.section {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.section-header { max-width: 820px; margin-bottom: 34px; }

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

.feature,
.contact-card,
.legal-content article {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
}

.feature p,
.contact-card p,
.legal-content p { color: var(--muted); margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.split > p { color: var(--muted); font-size: 1.1rem; }

.page-hero {
  padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 72px) clamp(20px, 4vw, 48px);
}

.page-hero.compact h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 22px;
}

.contact-card h2 { font-size: 1.35rem; letter-spacing: -0.02em; }
.contact-card a { color: var(--ink); font-weight: 800; }
.muted-card { background: rgba(255, 250, 240, 0.75); }

.legal-content {
  display: grid;
  gap: 18px;
  padding: 22px clamp(20px, 5vw, 72px) clamp(70px, 8vw, 120px);
}

.legal-content h2 { font-size: 1.35rem; margin-bottom: 12px; }
.legal-content a { color: var(--ink); font-weight: 750; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong { color: var(--ink); }
.site-footer p { margin-bottom: 0; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-weight: 650; }
.footer-links a:hover { color: var(--ink); }

@media (max-width: 880px) {
  .hero,
  .grid.three,
  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer {
    flex-direction: column;
  }

  .nav { justify-content: flex-start; }
  .brand img { width: 50px; height: 50px; }
  h1 { letter-spacing: -0.055em; }
}
