@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --text: #17202a;
  --muted: #65717d;
  --primary: #e85d2a;
  --primary-dark: #c9471c;
  --border: #e4e8ec;
  --shadow: 0 18px 50px rgba(23, 32, 42, .10);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

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

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

.brand { font-size: 1.15rem; font-weight: 800; }

.menu { display: flex; gap: 28px; font-size: .95rem; font-weight: 600; }
.menu a:hover { color: var(--primary); }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero { padding: 80px 0; background: var(--surface); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; line-height: 1.15; }

h1 { margin-bottom: 22px; font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -.05em; }
h1 span { color: var(--primary); }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.035em; }

.hero-copy p { max-width: 600px; color: var(--muted); font-size: 1.1rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { border: 1px solid var(--border); background: #fff; }

.hero-image {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: var(--radius);
  background: #f0f2f4;
  box-shadow: var(--shadow);
}

.hero-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 12px;
}

.section { padding: 100px 0; }
.section-heading { max-width: 700px; margin-bottom: 42px; }
.section-heading p, .about p, .contact p { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.card .icon { font-size: 2rem; margin-bottom: 18px; }
.card p { color: var(--muted); margin-bottom: 0; }

.about { padding: 100px 0; background: #17202a; color: #fff; }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: center; }
.about p { max-width: 650px; }
.about-list { display: grid; gap: 14px; }
.about-list div {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
}
.about-list strong { color: var(--primary); }

.contact { padding: 80px 0; }
.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-box h2 { margin-bottom: 10px; }
.contact-box p { margin: 0; max-width: 650px; }

.footer { padding: 30px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .9rem; }
.footer a:hover { color: var(--primary); }

@media (max-width: 800px) {
  .container { width: min(100% - 28px, 680px); }
  .menu-toggle { display: block; }
  .menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 18px 20px 24px;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    border-bottom: 1px solid var(--border);
  }
  .menu.is-open { display: flex; }
  .hero { padding: 55px 0; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { min-height: 300px; }
  .section, .about { padding: 70px 0; }
  .cards { grid-template-columns: 1fr; }
  .contact-box { align-items: flex-start; flex-direction: column; padding: 32px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.6rem; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .footer-inner { flex-direction: column; }
}
