:root {
  --navy: #1b2a4a;
  --navy-deep: #121c33;
  --cream: #f6f1e8;
  --cream-dark: #e8dfd0;
  --brick: #b55238;
  --brick-dark: #93462e;
  --ink: #1a1714;
  --muted: #5c564e;
  --line: rgba(27, 42, 74, 0.12);
  --white: #fcfaf6;
  --font: "Manrope", "Segoe UI", sans-serif;
  --max: 1160px;
  --radius: 14px;
  --hero-photo: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=2000&q=80");
  --story-photo: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=80");
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.logo-name {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
}

p {
  margin: 0 0 1rem;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  z-index: 100;
}

.skip:focus {
  top: 0.75rem;
}

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

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar {
  background: var(--navy-deep);
  color: #c9c0b2;
  font-size: 0.82rem;
  font-weight: 600;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 2.25rem;
}

.topbar a {
  color: var(--cream);
  text-decoration: none;
}

.topbar-links {
  display: flex;
  gap: 1.1rem;
}

.site-header {
  background: var(--navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.mark {
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
}

.logo-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brick);
}

.logo-name {
  display: block;
  font-size: 1.02rem;
  color: var(--cream);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
}

.nav a[aria-current="page"] {
  color: #e8b4a4;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.2;
}

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

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

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

.btn-ghost {
  background: transparent;
  border-color: rgba(246, 241, 232, 0.4);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: var(--cream);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(246, 241, 232, 0.25);
  color: var(--cream);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 28, 51, 0.58), rgba(18, 28, 51, 0.78)),
    var(--hero-photo) center/cover no-repeat;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 5.75rem;
}

.review-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(18, 28, 51, 0.55);
  border: 1px solid rgba(246, 241, 232, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 em {
  font-style: normal;
  color: #e08a72;
}

.hero-tag {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.65rem;
}

.hero p {
  max-width: 38rem;
  margin-inline: auto;
  font-size: 1.08rem;
  color: #d9d1c4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.85rem;
}

.kicker,
.section-kicker {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 0.7rem;
}

.trust-bar {
  background: #c9b29a;
  color: var(--navy-deep);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 1.7rem 0;
}

.trust-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.trust-item p {
  margin: 0;
  font-size: 0.92rem;
  color: #3d342c;
}

.section {
  padding: 4.5rem 0;
}

.section-cream {
  background: var(--cream);
}

.section-navy {
  background: var(--navy);
  color: var(--cream);
}

.lead {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

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

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.service-card .icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  border: 1px solid var(--cream-dark);
  border-radius: 999px;
  color: var(--brick);
  font-weight: 800;
}

.checks {
  margin: 0.85rem 0 1.1rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.checks li {
  position: relative;
  padding-left: 1.2rem;
}

.checks li + li {
  margin-top: 0.3rem;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brick);
}

.card-link {
  color: var(--brick);
  font-weight: 700;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.25rem;
  align-items: center;
}

.story-photo {
  position: relative;
  min-height: 22rem;
  border-radius: 18px;
  background: var(--story-photo) center/cover no-repeat;
}

.story-photo span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: 16rem;
  background: var(--white);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.phone-box {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0.5rem;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
}

.phone-box small {
  color: var(--brick);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.phone-box strong {
  font-size: 1.15rem;
  color: var(--navy);
}

.card-num {
  color: var(--brick);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.work-card {
  overflow: hidden;
  padding: 0;
}

.work-card img,
.work-photo {
  height: 13.5rem;
  background: var(--navy) center/cover no-repeat;
}

.work-card .work-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.work-1 { background-image: url("https://images.unsplash.com/photo-1484154216964-4dd8ddf0aea9?auto=format&fit=crop&w=900&q=80"); }
.work-2 { background-image: url("https://images.unsplash.com/photo-1562259949-e8e6c56a11ba?auto=format&fit=crop&w=900&q=80"); }
.work-3 { background-image: url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=900&q=80"); }

.list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.list li + li {
  margin-top: 0.35rem;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.city-list li {
  background: var(--white);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.cta-band p {
  margin: 0;
  color: #d9d1c4;
}

.page-hero {
  padding: 3.4rem 0 2.6rem;
  background: var(--cream);
}

.page-hero h1 {
  max-width: 18ch;
}

.crumbs {
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--muted);
}

.crumbs a {
  color: var(--brick);
  text-decoration: none;
}

.split.start {
  align-items: start;
}

.note {
  font-size: 0.9rem;
}

.form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

input,
select,
textarea {
  font: inherit;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-status {
  display: none;
  padding: 0.9rem 1rem;
  background: var(--cream);
  border-radius: 10px;
}

.form-status.is-visible {
  display: block;
}

.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
}

.site-footer {
  background: var(--navy-deep);
  color: #c9c0b2;
  padding: 2.6rem 0 2rem;
  font-size: 0.92rem;
}

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

.site-footer a {
  color: var(--cream);
  text-decoration: none;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.muted {
  color: var(--muted);
}

.narrow {
  max-width: 42rem;
}

@media (max-width: 900px) {
  .grid-3,
  .split,
  .form-row,
  .cta-band,
  .footer-inner,
  .trust-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .topbar-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav,
  .header-actions .btn-call {
    display: none;
  }

  body.nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--navy);
    padding: 1rem 1rem 1.25rem;
    gap: 0.9rem;
  }

  .hero,
  .cta-band {
    text-align: center;
  }

  .cta-band {
    justify-items: center;
  }
}

@media (max-width: 560px) {
  .grid-2,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero .wrap {
    padding: 4rem 0 4.25rem;
  }
}
