:root {
  --paper: #f5f6f8;
  --paper-2: #eceef2;
  --ink: #121417;
  --mute: #5a616b;
  --line: rgba(18, 20, 23, 0.1);
  --red: #d21f26;
  --red-dark: #a6161c;
  --white: #ffffff;
  --max: 1120px;
  --display: "Outfit", "Segoe UI", sans-serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

#form1 { margin: 0; }

main { padding-bottom: 2.75rem; }

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip:focus { left: 0.75rem; top: 0.75rem; }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.kicker {
  display: inline-block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--red);
  margin: 0 0 0.75rem;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.35rem; }

.lede {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--mute);
  max-width: 38rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  gap: 1rem;
}

.logo img { height: 28px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover,
.nav a[aria-current="page"] { color: var(--red); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.2rem;
  border-radius: 3px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 3.5rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }

.hero-photo {
  position: relative;
  min-height: 28rem;
  align-self: stretch;
}

.hero-photo img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(0.15) contrast(1.05);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto -1.2rem -1.2rem auto;
  width: 42%;
  height: 42%;
  border: 1px solid var(--red);
  pointer-events: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 1.6rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stat span {
  display: block;
  margin-top: 0.3rem;
  color: var(--mute);
  font-size: 0.92rem;
}

.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.muted { color: var(--mute); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.card h3 { margin-top: 0.4rem; }
.card-icon + h3 { margin-top: 0.15rem; }

.card-icon {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  color: var(--red);
}
.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.num {
  font-family: var(--display);
  color: var(--red);
  font-size: 1.4rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.step {
  padding-top: 1rem;
  border-top: 2px solid var(--ink);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.work-card {
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  background: #ddd;
}

.work-card figcaption { padding: 1rem 1.1rem 1.15rem; }
.work-card h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.work-card p { margin: 0; color: var(--mute); font-size: 0.92rem; }

.quote {
  background: var(--ink);
  color: var(--white);
}
.quote .wrap { max-width: 44rem; padding-top: 4.5rem; padding-bottom: 4.5rem; }
.quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.35;
}
.quote cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.95rem;
  color: rgba(255, 253, 249, 0.7);
}

.cta-band {
  background: var(--red);
  color: #fff;
  padding: 3.25rem 0;
}
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.cta-band h2 { color: #fff; margin: 0 0 0.35rem; }
.cta-band p { margin: 0; opacity: 0.92; }
.cta-band .btn-ink { background: var(--ink); color: #fff; }
.cta-band .btn-ink:hover { background: #000; }

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "-"; }
.faq details p { color: var(--mute); margin: 0.75rem 0 0.25rem; max-width: 42rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}
.contact-layout .form { max-width: none; }

.form {
  display: grid;
  gap: 0.9rem;
  max-width: 36rem;
}
.form label { font-size: 0.88rem; font-weight: 600; }
.form input:not([type="submit"]),
.form textarea {
  width: 100%;
  font: inherit;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
.form input:not([type="submit"]):focus,
.form textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}
.form-note { color: var(--mute); font-size: 0.9rem; }
.form-status { min-height: 1.3rem; font-weight: 600; }
.form-status .is-error { color: var(--red); }
.form-status .is-success { color: #1b7a3d; }
.form input[type="submit"] {
  width: auto;
}

.contact-aside {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.75rem 1.6rem;
  height: 100%;
}
.contact-aside h2 { margin-bottom: 1rem; }
.contact-aside a { color: var(--red); }

.site-footer {
  background: #313131;
  background: linear-gradient(to bottom, #454545 0%, #313131 100%);
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0;
  padding: 0;
  overflow: visible;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: #ffd0d2; }
.foot-inner {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}
.foot-contact,
.foot-hours {
  padding: 3.25rem 1.5rem 2.75rem;
  text-align: center;
}
.foot-contact h3,
.foot-hours h3 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1.75rem;
}
.foot-phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.foot-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}
.social-btn {
  box-sizing: border-box;
  display: inline-flex;
  width: 31px;
  height: 31px;
  min-width: 31px;
  min-height: 31px;
  max-width: 31px;
  max-height: 31px;
  padding: 0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 31px;
  color: #fff;
  line-height: 0;
}
.social-btn svg {
  display: block;
  width: 14px !important;
  height: 14px !important;
  max-width: 14px;
  max-height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}
.social-btn.facebook { background: #3b5998; }
.social-btn.x { background: #000; }
.social-btn:hover { color: #fff; filter: brightness(1.08); }
.foot-brand {
  background: var(--red);
  color: #fff;
  text-align: center;
  border-radius: 8px 8px 0 0;
  margin-top: -30px;
  padding: 2.75rem 1.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.foot-brand .foot-mark {
  width: 100px;
  height: 100px;
  max-width: 100px;
  margin: 0 auto 1rem;
  object-fit: contain;
}
.foot-brand .foot-wordmark {
  width: 200px;
  height: 35px;
  max-width: 200px;
  margin: 0 auto 1rem;
  object-fit: contain;
}
.foot-brand p {
  margin: 0;
  font-size: 0.75rem;
  color: #fff;
}
.hours-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 22rem;
  text-align: left;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.15rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
  font-size: 0.95rem;
}
.hours-list li:first-child { border-top: 1px dashed rgba(255, 255, 255, 0.22); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.85rem;
  }
  .nav.open { display: flex; }
  .hero, .split, .cards, .steps, .work-grid, .stats, .foot-inner, .contact-layout {
    grid-template-columns: 1fr;
    display: grid;
  }
  .cta-band .wrap {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .foot-brand { margin-top: 0; border-radius: 0; order: 2; }
  .foot-hours { order: 1; }
  .foot-contact { order: 3; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .hero-photo { min-height: 18rem; }
}
