:root {
  --gold: #d8ae43;
  --blue: #74c9dd;
  --sage: #d8ead2;
  --text: #333333;
  --muted: #777777;
  --light: #fbfaf7;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container { width: min(1120px, 92%); margin: 0 auto; }
.narrow { max-width: 820px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #eee;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand img { width: 82px; height: auto; display: block; }
nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
nav a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.95rem; }
nav a:hover { color: var(--gold); }

.hero { padding: 80px 0; background: linear-gradient(135deg, #ffffff 0%, #fbfaf7 55%, #eef9fb 100%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1.05; margin: 0 0 22px; color: #2d2d2d; }
.lead { font-size: 1.2rem; color: #555; max-width: 650px; }
.eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.8rem; }
.hero-logo { text-align: center; }
.hero-logo img { max-width: 420px; width: 100%; height: auto; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.08)); }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button { display: inline-block; padding: 13px 24px; border-radius: 999px; text-decoration: none; font-weight: 700; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { background: var(--gold); color: white; box-shadow: 0 10px 24px rgba(216,174,67,0.28); }
.secondary { border: 2px solid var(--blue); color: #26778b; background: white; }

.section { padding: 76px 0; }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.15; margin: 0 0 20px; }
.tinted { background: var(--light); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.card { background: white; padding: 28px; border-radius: 22px; border: 1px solid #eee; box-shadow: 0 12px 30px rgba(0,0,0,0.04); }
.card h3 { color: #2d2d2d; margin-top: 0; }
.card::before { content: ""; display: block; width: 44px; height: 4px; background: linear-gradient(90deg, var(--blue), var(--gold)); border-radius: 999px; margin-bottom: 18px; }

.price-list { border: 1px solid #eee; border-radius: 22px; overflow: hidden; background: white; }
.price-list div { display: flex; justify-content: space-between; gap: 20px; padding: 18px 22px; border-bottom: 1px solid #eee; }
.price-list div:last-child { border-bottom: none; }
.price-list strong { color: var(--gold); }
.small { color: var(--muted); font-size: 0.95rem; }
.cta { background: linear-gradient(135deg, #f8efd5, #effafd); text-align: center; }

.site-footer { background: #2d2d2d; color: white; text-align: center; padding: 26px 0; font-size: 0.9rem; }

@media (max-width: 850px) {
  .nav { align-items: flex-start; gap: 12px; }
  .brand img { width: 66px; }
  nav { gap: 12px; font-size: 0.9rem; }
  .hero { padding: 48px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-logo { order: -1; }
  .hero-logo img { max-width: 260px; }
  .cards { grid-template-columns: 1fr; }
  .price-list div { flex-direction: column; gap: 4px; }
}
