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

:root {
  --red: #C0392B;
  --red-dark: #96281B;
  --text: #1a1a1a;
  --muted: #555;
  --bg-alt: #f7f4f1;
  --border: #e2ddd9;
  --radius: 8px;
  --max-width: 960px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
}

.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 12px;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--red); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text);
  padding: 4px 8px;
}

.nav-mobile {
  display: none;
  list-style: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.nav-mobile.open { display: flex; }

.nav-mobile li a {
  display: block;
  padding: 12px 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #3a2020 100%);
  color: #fff;
  padding: 100px 24px;
  text-align: center;
}

.hero-content { max-width: 640px; margin: 0 auto; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--red-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

/* SECTIONS */
.section { padding: 72px 24px; }
.section-alt { background: var(--bg-alt); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section p {
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.service-icon { font-size: 2rem; margin-bottom: 14px; }

.service-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  margin-top: 36px;
  align-items: start;
}

.contact-info h3 { font-size: 1.15rem; margin-bottom: 12px; }
.contact-info p { font-size: 0.95rem; margin-bottom: 12px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: -6px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-status {
  font-size: 0.9rem;
  color: var(--red);
  min-height: 20px;
  margin: 0;
}

.form-status.success { color: #27ae60; }

/* FOOTER */
footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 32px 24px;
  text-align: center;
}

footer .container { display: flex; flex-direction: column; gap: 8px; }
footer p { font-size: 0.85rem; margin: 0; }
footer a { color: #ccc; }
footer a:hover { color: #fff; }

/* PRIVACY PAGE */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.prose h1 { font-size: 2rem; margin-bottom: 8px; }
.prose .meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 36px; }
.prose h2 { font-size: 1.25rem; margin: 32px 0 10px; }
.prose p, .prose li { color: var(--muted); margin-bottom: 12px; font-size: 0.97rem; line-height: 1.7; }
.prose ul { padding-left: 20px; margin-bottom: 12px; }
.prose a { color: var(--red); }

/* RESPONSIVE */
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 72px 24px; }
}
