@import url("https://fonts.googleapis.com/css2?family=Sora:wght@700;800&display=swap");

:root {
  --orange: #f25a12;
  --orange-deep: #d94c0d;
  --ink: #20282d;
  --muted: #3a4651;
  --soft-text: #53606b;
  --line: #e1e5e8;
  --page: #ffffff;
  --footer: #1f292e;
  --shadow: 0 10px 32px rgba(16, 28, 36, 0.08);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f3f5f6;
  overflow-x: hidden;
}

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

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

.page-shell {
  width: 100%;
  max-width: 1037px;
  margin: 0 auto;
  background:
    linear-gradient(90deg, rgba(242, 90, 18, 0.07) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(0deg, rgba(32, 40, 45, 0.04) 1px, transparent 1px) 0 0 / 54px 54px,
    var(--page);
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 112px;
  padding: 10px 28px 0 28px;
  background: rgba(255, 255, 255, 0.92);
}

.brand {
  margin-top: 14px;
  width: 322px;
}

.brand picture,
.brand img {
  display: block;
  width: 100%;
}

.site-nav {
  display: flex;
  gap: 52px;
  padding-top: 15px;
  color: #111a20;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid #cfd5d9;
  border-radius: 4px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: #273137;
}

.hero {
  position: relative;
  min-height: 526px;
  padding: 26px 0 18px 56px;
  background:
    radial-gradient(circle at 30% 60%, rgba(32, 40, 45, 0.06) 1px, transparent 1px) 0 0 / 9px 9px,
    #fff;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

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

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Sora", "Arial Black", Arial, sans-serif;
  font-size: 41px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--orange);
}

.orange-rule,
.title-rule {
  width: 57px;
  height: 3px;
  margin: 26px 0 22px;
  background: var(--orange);
}

.hero p {
  width: 390px;
  margin: 0 0 12px;
  color: #25323b;
  font-size: 15.5px;
  line-height: 1.5;
}

.hero p:last-of-type {
  margin-bottom: 30px;
}

.hero strong {
  display: block;
  margin-bottom: 9px;
  color: #1c2530;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h2 {
  margin: 0 0 28px;
  color: var(--orange);
  font-family: "Sora", "Arial Narrow", Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.contact-button {
  display: inline-flex;
  min-width: 174px;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.contact-button span {
  font-size: 24px;
  line-height: 1;
}

.hero-collage {
  position: absolute;
  top: 0;
  right: 0;
  width: 560px;
  height: 620px;
  object-fit: cover;
  object-position: left top;
}

.services {
  padding: 40px 59px 38px;
  background: #fff;
}

.section-title {
  text-align: center;
}

.section-title h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Sora", "Arial Narrow", Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.section-title .title-rule {
  margin: 12px auto 20px;
}

.section-title p {
  max-width: 490px;
  margin: 0 auto 32px;
  color: #25313a;
  font-size: 14px;
  line-height: 1.45;
}

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

.service-card {
  min-height: 326px;
  border: 1px solid #d8dde1;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card img {
  width: 100%;
  height: 152px;
  object-fit: cover;
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(242, 90, 18, 0.45);
  box-shadow: 0 14px 34px rgba(16, 28, 36, 0.14);
  transform: translateY(-3px);
}

.service-card:hover img,
.service-card:focus-within img {
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.04);
}

.service-card div {
  padding: 22px 14px 18px;
}

.service-card h3 {
  min-height: 38px;
  margin: 0 0 16px;
  color: var(--orange);
  font-family: "Sora", "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 0 0 18px;
  color: #28343d;
  font-size: 12.5px;
  line-height: 1.62;
}

.service-card li::marker {
  color: var(--orange);
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card img {
    transition: none;
  }

  .service-card:hover,
  .service-card:focus-within,
  .service-card:hover img,
  .service-card:focus-within img {
    transform: none;
  }
}

.why {
  padding: 0 28px 48px;
  background: #fff;
}

.why::before {
  display: block;
  height: 1px;
  margin: 0 0 30px;
  background: var(--line);
  content: "";
}

.section-title.compact .title-rule {
  margin-bottom: 36px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 960px;
  margin: 0 auto;
}

.why-grid article {
  min-height: 220px;
  padding: 0 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.why-grid article:last-child {
  border-right: 0;
}

.why-grid img {
  width: 72px;
  height: 72px;
  margin: -4px auto 16px;
  object-fit: contain;
}

.why-grid h3 {
  min-height: 44px;
  margin: 0 0 14px;
  color: #17212a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.why-grid p {
  margin: 0;
  color: #29353e;
  font-size: 13.5px;
  line-height: 1.55;
}

.contact {
  position: relative;
  min-height: 333px;
  padding: 42px 0 32px 56px;
  background: #fff;
  overflow: hidden;
}

.contact::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 28px;
  height: 1px;
  background: var(--line);
  content: "";
}

.contact-copy {
  position: relative;
  z-index: 2;
  width: 345px;
}

.contact h2 {
  font-size: 33px;
}

.contact .orange-rule {
  margin: 12px 0 18px;
}

.contact-copy > p {
  width: 318px;
  margin: 0 0 28px;
  color: #25313a;
  font-size: 13px;
  line-height: 1.45;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a,
.contact-list div {
  display: grid;
  grid-template-columns: 22px 70px 1fr;
  gap: 12px;
  align-items: center;
  color: #1d2830;
  font-size: 12px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  overflow: visible;
}

.contact-list span {
  color: #1d2830;
  font-weight: 500;
}

.contact-list strong {
  color: #1d2830;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.36;
  max-width: 182px;
  overflow-wrap: anywhere;
}

.contact-building {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 499px;
  height: 333px;
  object-fit: cover;
  object-position: left top;
}

.site-footer {
  display: grid;
  min-height: 54px;
  place-items: center;
  background: var(--footer);
  color: #fff;
}

.site-footer p {
  margin: 0;
  font-size: 11px;
}

@media (max-width: 760px) {
  .page-shell {
    width: 100%;
    box-shadow: none;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 76px;
    height: auto;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
  }

  .brand {
    margin-top: 0;
    width: clamp(176px, 58vw, 260px);
    flex: 0 1 auto;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    gap: 0;
    max-height: calc(100vh - 96px);
    padding: 8px 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    overflow-y: auto;
  }

  .site-nav a {
    padding: 14px 0;
  }

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

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0 18px 54px;
  }

  .hero-collage {
    order: -1;
    position: relative;
    width: calc(100% + 36px);
    height: auto;
    margin: 0 -18px 30px;
    aspect-ratio: 1.12;
    object-fit: cover;
    object-position: center top;
  }

  .hero-copy,
  .contact-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero p,
  .contact-copy > p {
    width: 100%;
    max-width: 36rem;
  }

  .hero p:last-of-type {
    margin-bottom: 28px;
  }

  .hero strong {
    margin-top: 12px;
  }

  .hero h2 {
    max-width: 8ch;
    font-size: clamp(42px, 13vw, 62px);
  }

  .contact-button {
    width: 100%;
  }

  .services {
    padding: 50px 18px 56px;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .service-card div {
    padding: 22px 18px 24px;
  }

  .why {
    padding: 0 18px 58px;
  }

  .why-grid article {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-grid img {
    width: 76px;
    height: 76px;
  }

  .why-grid h3 {
    min-height: 0;
    font-size: 15px;
  }

  .why-grid p {
    max-width: 23rem;
    margin: 0 auto;
    font-size: 14.5px;
  }

  .why-grid article:last-child {
    border-bottom: 0;
  }

  .contact {
    min-height: 0;
    padding: 50px 18px 0;
  }

  .contact-building {
    position: relative;
    width: calc(100% + 36px);
    height: auto;
    margin: 36px -18px 0;
    aspect-ratio: 1.45;
    object-fit: cover;
    object-position: center;
  }

  .contact-list a,
  .contact-list div {
    grid-template-columns: 28px minmax(74px, auto) 1fr;
    gap: 12px;
  }

  .contact-list strong {
    max-width: none;
  }

  .site-footer {
    padding: 16px 18px;
    text-align: center;
  }
}

@media (min-width: 761px) and (max-width: 860px) {
  .site-header {
    padding-right: 28px;
  }

  .site-nav {
    gap: 44px;
  }

  .hero {
    padding-top: 24px;
    padding-left: 48px;
  }

  .hero-copy {
    width: 330px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    width: 330px;
    font-size: 14.5px;
    line-height: 1.48;
  }

  .hero h2 {
    font-size: 38px;
  }

  .hero-collage {
    width: 520px;
    height: 620px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 34px;
  }

  .why-grid article:nth-child(3n) {
    border-right: 0;
  }

  .contact {
    min-height: 0;
    padding: 54px 48px 0;
  }

  .contact-copy {
    width: 100%;
    max-width: 520px;
  }

  .contact-copy > p {
    width: 100%;
  }

  .contact-list strong {
    max-width: none;
  }

  .contact-building {
    position: relative;
    width: calc(100% + 96px);
    height: auto;
    margin: 38px -48px 0;
    aspect-ratio: 1.65;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 560px) {
  .section-title h2,
  .contact h2 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .section-title p {
    margin-bottom: 34px;
    font-size: 16px;
  }

  .service-card img {
    height: auto;
    aspect-ratio: 1.45;
    object-fit: cover;
  }

  .service-card h3 {
    font-size: clamp(22px, 7vw, 28px);
    min-height: 0;
  }

  .contact-list a,
  .contact-list div {
    grid-template-columns: 26px 1fr;
    align-items: start;
  }

  .contact-list span,
  .contact-list strong {
    grid-column: 2;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand {
    width: clamp(156px, 56vw, 210px);
  }

  .hero,
  .services,
  .why,
  .contact {
    padding-inline: 14px;
  }

  .hero-collage,
  .contact-building {
    width: calc(100% + 28px);
    margin-inline: -14px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 42px);
  }

  .hero h2 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .contact-button {
    min-width: 0;
  }
}
