:root {
  --bg: #ffffff;
  --muted: #f2f2f2;
  --primary: #111111;
  --accent: #444;
  --text: #111;
  --soft: #666;
  --radius: 18px;
  --shadow: 0 14px 35px rgba(0,0,0,.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Montserrat, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.section {
  padding: 90px 0;
}

.section-muted {
  background: var(--muted);
}

.section-accent {
  background: var(--primary);
  color: #fff;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

ul {
  padding-left: 20px;
}

.price {
  margin-top: 20px;
  font-weight: 700;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo-img {
  height: 42px;
}

.main-nav a {
  margin-left: 20px;
  color: var(--soft);
  text-decoration: none;
  font-size: .95rem;
}

.nav-cta {
  border: 1px solid var(--accent);
  padding: 6px 16px;
  border-radius: 999px;
}

/* HERO */
.hero {
  background: linear-gradient(to right, #000 40%, #222);
  color: white;
  padding: 120px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
}

.hero-person {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 35px 0;
}

.hero-person img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: #fff;
  color: #000;
}

.full-width {
  width: 100%;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.contact-form-wrapper {
  background: var(--primary);
  padding: 25px;
  border-radius: var(--radius);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 8px;
  border: none;
}

/* FOOTER */
.site-footer {
  background: #050814;
  color: #aaa;
  padding: 20px 0;
  font-size: .8rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  h1 {
    font-size: 2.2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
