*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: linear-gradient(200deg, #fef9c3, #fefce8);
  background-attachment: fixed;
  font-family: 'Karla', sans-serif;
  color: #4a4a4a;
  line-height: 1.75;
  font-size: 17px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 12px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

p { margin-bottom: 12px; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

a { color: #a16207; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Cookie banner */
.cookie-banner {
  background: rgba(255,255,255,0.9);
  padding: 12px 0;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-inner p { margin: 0; font-size: 14px; }

/* Header */
.site-header { padding: 16px 0; background: transparent; }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-logo {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
}
.site-nav { display: flex; gap: 24px; }
.site-nav a {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #4a4a4a;
  font-weight: 500;
}
.site-nav a:hover { color: #a16207; text-decoration: none; }

/* Hero */
.hero { padding: 56px 0; }
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero p { color: #4a4a4a; margin-bottom: 24px; }

/* Sections */
.section { padding: 56px 0; }
.section h2 { text-align: center; }
.section-sub {
  text-align: center;
  color: #808080;
  margin-bottom: 32px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #a16207;
  color: #fff;
  border-radius: 6px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn:hover { opacity: 0.85; text-decoration: none; }
.btn-block { width: 100%; padding: 12px; }

/* Cards & grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.06); }

/* Contact */
.contact-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
}
.contact-card h2 { text-align: left; }
.contact-card .section-sub { text-align: left; margin-bottom: 16px; }
.contact-info {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.lead-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #4a4a4a;
  margin: 12px 0 6px;
}
.lead-form input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Karla', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.lead-form input:focus {
  border-color: #a16207;
  box-shadow: 0 0 0 2px #a1620720;
}
.lead-form .btn-block { margin-top: 20px; }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px;
  background: rgba(161,98,7,0.08);
  color: #a16207;
  border-radius: 6px;
  font-size: 14px;
}
.form-success.show { display: block; }

/* Legal pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 { text-align: left; margin-top: 28px; }
.legal-content h1 { margin-bottom: 24px; }
.legal-content p, .legal-content li { color: #4a4a4a; margin-bottom: 12px; }
.legal-content ul { padding-left: 22px; margin-bottom: 16px; }

/* Footer */
.site-footer {
  text-align: center;
  color: #808080;
  padding: 32px 0;
  font-size: 14px;
}
.footer-links { margin-top: 8px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .hero { padding: 40px 0; }
  .section { padding: 40px 0; }
  .contact-card { padding: 24px; }
  .nav-wrap { flex-direction: column; align-items: flex-start; }
  .site-nav { gap: 16px; }
}
