:root {
  --c1: #a04f4f;
  --c2: #743939;
  --text: #38454a;
  --heading: #0a1821;
  --bg-soft: #f8f8f8;
  --bg-panel: #f2f2f2;
  --white: #ffffff;
  --border: #e6e6e6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Mulish", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

h1,
h2,
h3 {
  color: var(--heading);
  line-height: 1.25;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  margin-bottom: 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.08);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand img,
.brand-logo {
  width: 120px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--heading);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--c1);
}

.hero {
  background: linear-gradient(rgba(14, 24, 32, 0.62), rgba(14, 24, 32, 0.62)),
    url("images/hero0.jpeg")
      center/cover no-repeat;
  color: var(--white);
  padding: 110px 0;
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero-content {
  max-width: 820px;
}

.btn {
  display: inline-block;
  background: var(--c1);
  color: var(--white);
  font-weight: 800;
  border: 0;
  cursor: pointer;
  padding: 0.9rem 1.3rem;
  min-width: 180px;
  text-align: center;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--c2);
}

.btn-outline {
  background: transparent;
  color: var(--c1);
  border: 2px solid var(--c1);
}

.center {
  text-align: center;
  margin-top: 1rem;
}

.process {
  background: var(--bg-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1rem;
}

.step-card h3 {
  color: var(--c1);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
}

.panel {
  background: var(--bg-panel);
  padding: 1.6rem;
}

.panel.accent {
  background: linear-gradient(135deg, #f7f0f0, #f4e7e7);
  border-left: 5px solid var(--c1);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  padding: 1.4rem;
  background: var(--white);
}

.card h3 {
  color: var(--c1);
  margin-bottom: 0.4rem;
}

.secondary-hero {
  background: var(--bg-soft);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  position: relative;
}

.check-list li::before {
  content: "✓";
  color: var(--c1);
  position: absolute;
  left: 0;
  font-weight: 900;
}

.image-wrap img {
  border-radius: 4px;
}

.stats {
  text-align: center;
}

.lead {
  max-width: 700px;
  margin: 0 auto 0.6rem;
}

.stats-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.stats-grid div {
  background: var(--bg-panel);
  padding: 1rem;
}

.stats-grid strong {
  display: block;
  color: var(--c1);
  font-size: 1.3rem;
}

.real-work {
  background: var(--bg-soft);
}

.real-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.work-item {
  background: var(--white);
  border: 1px solid var(--border);
}

.work-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.work-item h3,
.work-item p {
  padding: 0 0.9rem;
}

.work-item h3 {
  margin: 0.8rem 0 0.35rem;
  font-size: 1.05rem;
}

.work-item p {
  margin: 0 0 0.95rem;
}

.form-section {
  background: var(--bg-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-form {
  background: var(--white);
  padding: 1.35rem;
  border: 1px solid var(--border);
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(10, 24, 33, 0.06);
}

.form-note {
  max-width: 44ch;
}

.contact-form label,
.contact-form fieldset legend {
  font-weight: 700;
}

.field {
  display: block;
}

.field-full {
  grid-column: 1 / -1;
}

.contact-form input {
  width: 100%;
  padding: 0.85rem 0.75rem;
  border: 2px solid var(--border);
  margin-top: 0.35rem;
  font: inherit;
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--c1);
  box-shadow: 0 0 0 3px rgba(160, 79, 79, 0.15);
}

.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.75rem;
  border: 2px solid var(--border);
  margin-top: 0.35rem;
  font: inherit;
  border-radius: 4px;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea:focus {
  outline: none;
  border-color: var(--c1);
  box-shadow: 0 0 0 3px rgba(160, 79, 79, 0.15);
}

.contact-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.radio-row {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.45rem;
}

.radio-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: #fff;
  font-weight: 600;
}

.radio-pill input {
  width: auto;
  margin-right: 0.4rem;
  margin-top: 0;
}

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

/* Contact page */
.section-intro {
  margin-bottom: 2rem;
  max-width: 56ch;
}

.contact-page-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact-info-block {
  background: var(--bg-soft);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.contact-info-block h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.contact-info-block address {
  font-style: normal;
}

.contact-info-block address p {
  margin: 0 0 1rem;
}

.contact-info-block address p:last-child {
  margin-bottom: 0;
}

.contact-info-block a {
  color: var(--c1);
}

.contact-info-block a:hover {
  text-decoration: underline;
}

.contact-form-block h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.contact-form-general {
  grid-template-columns: 1fr;
}

.faq-section {
  background: var(--white);
}

.faq-wrap {
  max-width: 860px;
}

.faq-item {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 6px;
  padding: 0.25rem 0.9rem;
  margin-bottom: 0.75rem;
}

.faq-item summary {
  font-weight: 800;
  color: var(--heading);
  cursor: pointer;
  padding: 0.75rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--c1);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0 0 0.9rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quote {
  border: 1px solid var(--border);
  padding: 1rem;
  background: var(--white);
}

.person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.7rem;
}

.person img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.person span {
  display: block;
  font-size: 0.9rem;
}

.site-footer {
  background: #f5f5f5;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-logo {
  width: 120px;
}

.footer-logo-img {
  width: 100px;
  height: auto;
  margin-bottom: 0.6rem;
  display: block;
}

/* About page */
.about-content {
  max-width: 720px;
}

/* Legal pages (privacy, terms) */
.legal-content {
  max-width: 720px;
}

.legal-content .legal-updated {
  color: var(--text);
  opacity: 0.85;
  font-size: 0.95rem;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h2:first-of-type {
  margin-top: 1.5rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--c1);
}

.legal-content a:hover {
  text-decoration: underline;
}

.about-image {
  margin: 1.5rem 0 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.get-started-banner {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-panel) 100%);
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.get-started-banner h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.get-started-banner p {
  margin: 0 0 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.get-started-banner .btn {
  margin: 0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a:hover {
  color: var(--c1);
}

.copyright {
  text-align: center;
  padding: 1rem;
  margin: 2rem 0 0;
  border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .steps,
  .cards,
  .testimonials-grid,
  .real-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .two-col,
  .form-grid,
  .footer-grid,
  .contact-page-wrap {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .main-nav {
    display: none;
  }

  .hero {
    padding: 84px 0;
  }

  .steps,
  .cards,
  .testimonials-grid,
  .stats-grid,
  .real-work-grid {
    grid-template-columns: 1fr;
  }
}
