@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #111111;
  --muted: #626262;
  --paper: #fbfaf7;
  --white: #ffffff;
  --red: #e31b23;
  --red-dark: #b91018;
  --line: #e7e3dc;
  --soft: #f2eee7;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(231, 227, 220, 0.8);
  backdrop-filter: blur(14px);
}

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

.brand img {
  display: block;
  width: 170px;
  height: auto;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 14px;
}

.nav a { opacity: .75; transition: .2s ease; }
.nav a:hover { opacity: 1; color: var(--red); }

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: .2s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--white); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 80% 18%, rgba(227,27,35,.12), transparent 28%),
    linear-gradient(135deg, #fbfaf7 0%, #f5f1ea 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
  padding: 90px 0;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 800;
  margin-bottom: 15px;
}

h1, h2, h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(48px, 7vw, 82px);
  letter-spacing: -.055em;
}

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

.hero-text {
  max-width: 650px;
  margin: 26px 0 32px;
  color: var(--muted);
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(227,27,35,.22);
}
.btn-primary:hover { background: var(--red-dark); }

.btn-secondary { border: 1px solid var(--line); background: var(--white); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 52px;
}
.trust-row div { display: grid; gap: 1px; }
.trust-row strong { font-family: "Space Grotesk"; font-size: 17px; }
.trust-row span { color: var(--muted); font-size: 12px; }

.hero-card {
  position: relative;
  min-height: 460px;
  border-radius: 36px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
}
.card-top {
  position: absolute;
  top: 24px;
  left: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  letter-spacing: .18em;
  color: #bbb;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

.focus-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  background: radial-gradient(circle, rgba(227,27,35,.98) 0 33%, rgba(227,27,35,.16) 34% 53%, transparent 54%);
}
.focus-inner {
  text-align: center;
  display: grid;
  gap: 0;
  font-family: "Space Grotesk";
}
.focus-inner span { font-size: 14px; letter-spacing: .25em; }
.focus-inner strong { font-size: 52px; line-height: 1; }
.focus-inner small { font-size: 10px; letter-spacing: .22em; color: #ddd; }
.hero-card p {
  position: absolute;
  bottom: 22px;
  margin: 0;
  color: #bdbdbd;
  font-size: 13px;
}

.section { padding: 110px 0; }

.section-heading { max-width: 720px; margin-bottom: 55px; }
.section-heading h2 {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -.04em;
}
.section-heading p { color: var(--muted); font-size: 17px; margin-top: 20px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  padding: 30px;
  min-height: 260px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: .25s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff0f0;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 55px;
}
.feature h3 { font-size: 22px; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 14px; margin: 0; }

.about { background: var(--soft); }

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.logo-panel {
  min-height: 390px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  padding: 35px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(17,17,17,.07);
}
.logo-panel img { max-width: 100%; width: 330px; mix-blend-mode: multiply; }
.about-copy h2 { font-size: clamp(38px, 5vw, 60px); letter-spacing: -.05em; }
.about-copy > p { color: var(--muted); font-size: 17px; max-width: 650px; margin: 25px 0; }
.quote {
  border-left: 3px solid var(--red);
  padding: 8px 0 8px 18px;
  font-weight: 700;
  font-size: 18px;
}

.cta { padding: 72px 0; background: var(--red); color: var(--white); }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta .eyebrow { color: #ffd5d7; }
.cta h2 { font-size: clamp(34px, 5vw, 52px); letter-spacing: -.04em; max-width: 650px; }
.btn-light { background: var(--white); color: var(--ink); white-space: nowrap; }

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff0f0;
  color: var(--red);
  font-weight: 800;
}
.contact-item span:last-child { display: grid; }
.contact-item small { color: var(--muted); }
.contact-item strong { font-size: 16px; overflow-wrap: anywhere; }

footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #777;
  font-size: 12px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}
.glow-one {
  width: 260px;
  height: 260px;
  background: rgba(227,27,35,.08);
  right: -80px;
  bottom: 70px;
}
.glow-two {
  width: 140px;
  height: 140px;
  border: 1px solid rgba(227,27,35,.16);
  left: 40%;
  top: 40px;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero { min-height: auto; }
  .hero-card { min-height: 390px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 135px; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
  .hero-grid { padding: 65px 0 75px; }
  h1 { font-size: 50px; }
  .hero-text { font-size: 16px; }
  .trust-row { margin-top: 38px; gap: 18px; }
  .section { padding: 75px 0; }
  .feature-grid, .contact-card { grid-template-columns: 1fr; }
  .feature { min-height: auto; }
  .icon { margin-bottom: 30px; }
  .logo-panel { min-height: 300px; }
  .footer-wrap { flex-direction: column; }
}
