:root {
  --paper: #f3f1ec;
  --ink: #161616;
  --muted: #5c5c5c;
  --line: #d8d4cc;
  --red: #c8102e;
  --blue: #1e4bdc;
  --white: #fffcf8;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

.hero-logo {
  display: inline-block;
  margin: 0 0 1.1rem;
}

.hero-logo img {
  display: block;
  height: 84px;
  width: auto;
  max-width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-red {
  background: var(--red);
  color: white;
}

.btn-blue {
  background: var(--blue);
  color: white;
}

.btn-wa {
  background: #25d366;
  color: white;
}

.wa-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.float-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
}

.hero {
  padding: 3.2rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.2rem;
  align-items: center;
}

.hero-photo {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: min(420px, 52vw);
  object-fit: cover;
}

.hero-photo figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.55rem 0.75rem 0.7rem;
}

.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.shot {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.shot img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.shot figcaption {
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.65rem 0.75rem 0.8rem;
}

.card {
  padding: 0 0 1.15rem;
  overflow: hidden;
}

.card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin-bottom: 0.85rem;
}

.card .pad {
  padding: 0 1.15rem;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin: 0 0 0.8rem;
}

.hero h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  max-width: 16ch;
}

.hero p.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 0 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 2.4rem;
}

.dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7ea0ff, var(--blue));
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--blue) 40%, white);
}

.section {
  padding: 3.2rem 0;
}

.section h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 0.6rem;
}

.section-intro {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 8.5rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.mark {
  width: 28px;
  height: 8px;
  background: var(--red);
  margin-bottom: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.8rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

.num {
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--red);
  font-size: 1.4rem;
}

.contact-box {
  background: var(--ink);
  color: #f5f5f5;
  padding: 1.6rem;
}

.contact-box h2,
.contact-box p {
  color: inherit;
}

.contact-box a {
  color: white;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 0;
}

.contact-list a {
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, white 25%, transparent);
  padding-bottom: 0.55rem;
}

.contact-list span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.float-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 30;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.8rem;
  }

  .hero-logo img {
    height: 72px;
  }

  .hero-grid,
  .shots {
    grid-template-columns: 1fr;
  }

  .hero-photo img,
  .shot img {
    height: 240px;
  }
}
