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

:root {
  --primary: #d32f2f;
  --primary-dark: #b71c1c;
  --white: #ffffff;
  --bg: #fafafa;
  --bg-alt: #f3f3f7;
  --text: #2b2b2b;
  --muted: #676767;
  --border: #e0e0e0;
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.08);
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1080px;
}

html {
  scroll-behavior: smooth;
}

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

/* HEADER / NAV */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: inherit;
}

.brand-logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}





.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

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

.nav-cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--primary-dark);
}

/* LAYOUT */

.section {
  padding: 3rem 1.25rem;
}

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

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

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

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

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

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }
  .main-nav {
    display: none;
  }
}

/* TYPOGRAPHY */

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 2.4vw + 1.5rem, 2.5rem);
  margin: 0 0 1rem;
}

h1 span {
  color: var(--primary);
}

h2 {
  font-size: 1.7rem;
  margin: 0 0 0.5rem;
}

h3 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.section-subtitle {
  margin: 0 0 1.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* HERO */

.hero {
  padding-top: 3.2rem;
  padding-bottom: 2.6rem;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 1.7rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pill {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.78rem;
  color: var(--muted);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.btn-outline {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

/* CARDS & ELEMENTS */

.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.pill-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.list {
  list-style: none;
  padding-left: 0;
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.list li {
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 1rem;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.checklist li {
  margin-bottom: 0.45rem;
}

/* TAGS */

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

.tag {
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #f3f3f5;
  color: #444;
}

/* HERO PANEL */

.hero-panel-text {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.stat {
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-value {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

/* CONTACT & FORM */

.contact-section {
  background: #ffffff;
}

.contact-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.93rem;
  color: var(--muted);
}

.contact-list li {
  margin-bottom: 0.35rem;
}

.quote-form {
  margin-top: 0.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.86rem;
}

label {
  font-weight: 500;
  color: #444;
}

input,
textarea,
select {
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0.55rem 0.6rem;
  font-size: 0.9rem;
  outline: none;
  background: #fbfbfd;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  background: #ffffff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.small {
  font-size: 0.86rem;
  color: var(--muted);
}

/* FOOTER */

.site-footer {
  background: #111111;
  color: #e6e6e6;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.8rem 1.25rem 1.3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.86rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  padding: 0.6rem 1.25rem 1rem;
  color: #aaaaaa;
}

@media (max-width: 600px) {
  .section {
    padding: 2.4rem 1rem;
  }
}


.brand-name {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
}

.brand-sub {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}
