:root {
  --ink: #0b1434;
  --ink-soft: #26304b;
  --text: #444c5f;
  --muted: #737b8d;
  --accent: #ff4b16;
  --accent-dark: #d63b0d;
  --paper: #ffffff;
  --mist: #f4f6f8;
  --warm: #f7f4ef;
  --line: #e6eaf0;
  --outer: #dde1e6;
  --shadow: 0 24px 70px rgba(11, 20, 52, 0.12);
  --shell: min(100% - 80px, 1160px);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--outer);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

.site-header,
.hero,
.section,
.site-footer {
  width: var(--shell);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 70px;
  margin: 16px auto 0;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(230, 234, 240, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(11, 20, 52, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 48px rgba(11, 20, 52, 0.14);
}

.brand,
.site-nav,
.site-nav a,
.header-phone,
.button {
  display: inline-flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(255, 75, 22, 0.22);
}

.site-nav {
  justify-self: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.site-nav a {
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  color: #697184;
  font-size: 0.78rem;
  font-weight: 760;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--ink);
  color: #fff;
}

.header-phone {
  justify-self: end;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 850;
  box-shadow: 0 16px 28px rgba(255, 75, 22, 0.22);
  transition: transform 180ms ease, background 180ms ease;
}

.header-phone:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  margin: -86px auto 0;
  padding-top: 112px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero {
  margin: 0 auto;
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 70px;
  align-items: start;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 12.4ch;
  margin-bottom: 0;
  font-size: 4.75rem;
  line-height: 1;
}

h2 {
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.18;
}

.hero-intro {
  padding-top: 34px;
}

.hero-intro p,
.section-heading p,
.process-copy p,
.reviews-copy > p,
.contact-panel p,
.contact-details p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-intro p {
  max-width: 54ch;
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  justify-content: center;
  min-height: 50px;
  gap: 11px;
  padding: 0 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(255, 75, 22, 0.23);
}

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

.button-primary span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  font-size: 0.92rem;
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(255, 75, 22, 0.38);
}

.hero-media {
  position: relative;
  margin: 42px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
  box-shadow: 0 24px 54px rgba(11, 20, 52, 0.15);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 730 / 345;
  object-fit: cover;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  text-align: center;
}

.hero-facts article {
  min-width: 0;
  padding: 0 26px;
}

.hero-facts article + article {
  border-left: 1px solid rgba(255, 75, 22, 0.38);
}

.hero-facts strong {
  display: block;
  color: var(--accent);
  font-size: 2.7rem;
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 9px;
  color: #737b8d;
  font-size: 0.82rem;
}

.section {
  margin: 0 auto;
  padding: 82px 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.service-card {
  display: flex;
  min-width: 0;
  min-height: 442px;
  flex-direction: column;
  padding: 18px 18px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 75, 22, 0.32);
  box-shadow: 0 18px 45px rgba(11, 20, 52, 0.1);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  margin-bottom: 22px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--mist);
}

.service-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #fff1ec;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p,
.process-steps p,
.review-list p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.service-card p {
  margin-bottom: 0;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
  padding: 86px 52px;
  border-radius: 8px;
  background: var(--warm);
}

.process-copy {
  position: sticky;
  top: 112px;
}

.process-copy p {
  max-width: 47ch;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-steps article {
  min-height: 236px;
  padding: 24px;
  border: 1px solid rgba(11, 20, 52, 0.08);
  border-radius: 8px;
  background: #fff;
}

.process-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.reviews-copy {
  min-width: 0;
}

.reviews-shot {
  max-width: 360px;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  box-shadow: 0 16px 36px rgba(11, 20, 52, 0.09);
}

.reviews-shot img {
  width: 100%;
  object-fit: cover;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

blockquote {
  min-height: 248px;
  margin-bottom: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

blockquote::before {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  content: "“";
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 0.6;
}

blockquote p {
  margin-bottom: 22px;
  color: var(--ink-soft);
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 780;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.7fr);
  gap: 34px;
  align-items: stretch;
  padding-bottom: 92px;
}

.contact-panel,
.contact-details {
  border-radius: 8px;
}

.contact-panel {
  padding: 48px;
  background: var(--ink);
  color: #fff;
}

.contact-panel .eyebrow,
.contact-panel h2 {
  color: #fff;
}

.contact-panel p {
  max-width: 58ch;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel .button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-details {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.72;
}

address strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.contact-details h3 {
  margin-bottom: 8px;
}

.site-footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 24px max(14px, calc((100% - 1160px) / 2)) 42px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  white-space: nowrap;
}

.site-footer a:hover {
  color: #fff;
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 44px, 900px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 88px 22px auto;
    display: none;
    grid-column: 1 / -1;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(11, 20, 52, 0.18);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    min-height: 42px;
    font-size: 0.92rem;
  }

  .header-phone {
    display: none;
  }

  .hero-grid,
  .process,
  .reviews-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 12px;
  }

  .hero-intro {
    padding-top: 0;
  }

  h1 {
    max-width: 12.8ch;
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.45rem;
  }

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

  .service-card {
    min-height: 0;
  }

  .process {
    padding: 58px 30px;
  }

  .process-copy {
    position: static;
  }

  .site-footer {
    flex-direction: column;
    padding-inline: 22px;
    padding-bottom: 38px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 28px, 620px);
  }

  .site-header {
    top: 10px;
    min-height: 62px;
    margin-top: 10px;
    padding-left: 12px;
  }

  main {
    margin-top: -72px;
    padding-top: 92px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .hero {
    padding: 46px 0 36px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-media {
    margin-top: 30px;
  }

  .hero-media img {
    min-height: 250px;
  }

  .hero-facts,
  .process-steps,
  .review-list {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    margin-top: 34px;
    text-align: left;
  }

  .hero-facts article {
    padding: 18px 0;
  }

  .hero-facts article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 75, 22, 0.28);
  }

  .hero-facts strong {
    font-size: 2.15rem;
  }

  .section {
    padding: 58px 0;
  }

  .process {
    padding: 46px 20px;
  }

  .process-steps article,
  blockquote {
    min-height: 0;
  }

  .reviews-shot {
    max-width: none;
  }

  .contact-panel,
  .contact-details {
    padding: 24px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    white-space: normal;
  }

  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
