@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,700;0,800;1,700&display=swap");

:root {
  --navy: #062b58;
  --navy-deep: #031d3d;
  --navy-soft: #0b3b72;
  --orange: #ff6514;
  --orange-light: #ff8442;
  --paper: #f5f3ee;
  --white: #ffffff;
  --ink: #092848;
  --muted: #607083;
  --line: rgba(6, 43, 88, 0.13);
  --shadow: 0 30px 70px rgba(3, 29, 61, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(6, 43, 88, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(6, 43, 88, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(1460px, calc(100% - 80px));
  min-height: 122px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  width: 248px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-contact svg {
  width: 21px;
  transition: transform 180ms ease;
}

.header-contact:hover svg {
  transform: translateX(4px);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  width: min(1460px, calc(100% - 80px));
  min-height: 620px;
  margin: 16px auto 0;
  grid-template-columns: minmax(460px, 0.84fr) minmax(560px, 1.16fr);
  align-items: center;
  gap: clamp(34px, 5vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 50px 0 70px;
  animation: reveal-up 700ms ease both;
}

.status {
  display: inline-flex;
  margin-bottom: 36px;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.status span {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.status span::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(255, 101, 20, 0.45);
  border-radius: inherit;
  content: "";
  animation: pulse 2.2s ease-out infinite;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 5.2vw, 5.8rem);
  line-height: 0.98;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-intro {
  max-width: 630px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 23px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button svg {
  width: 20px;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 13px 28px rgba(255, 101, 20, 0.24);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #ee5708;
  box-shadow: 0 17px 34px rgba(255, 101, 20, 0.3);
}

.button-secondary {
  border: 1px solid rgba(6, 43, 88, 0.16);
  background: rgba(255, 255, 255, 0.55);
  color: var(--navy);
}

.button-secondary:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.service-list {
  display: flex;
  margin: 44px 0 0;
  padding: 0;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
  flex-wrap: wrap;
  row-gap: 12px;
}

.service-list li {
  display: flex;
  align-items: center;
}

.service-list li:not(:last-child)::after {
  width: 4px;
  height: 4px;
  margin: 0 13px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero-visual {
  position: relative;
  min-width: 0;
  animation: reveal-left 900ms 100ms ease both;
}

.photo-wrap {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: 130px 8px 8px 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.photo-wrap > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(3, 29, 61, 0.6)),
    linear-gradient(90deg, rgba(3, 29, 61, 0.12), transparent 45%);
}

.photo-note {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: flex;
  min-width: 310px;
  align-items: center;
  gap: 15px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: rgba(3, 29, 61, 0.88);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.photo-note small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pin {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  place-items: center;
}

.pin svg {
  width: 21px;
}

.route-line {
  position: absolute;
  z-index: -1;
  border: solid var(--orange);
  border-width: 2px 0 0;
  border-radius: 50%;
  opacity: 0.65;
}

.route-line::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.route-line-one {
  top: -34px;
  right: -110px;
  width: 480px;
  height: 180px;
  transform: rotate(-5deg);
}

.route-line-one::after {
  top: -6px;
  left: 31%;
}

.route-line-two {
  right: -70px;
  bottom: -46px;
  width: 330px;
  height: 110px;
  border-color: var(--navy);
  transform: rotate(9deg);
  opacity: 0.26;
}

.route-line-two::after {
  top: -6px;
  left: 55%;
  background: var(--navy);
}

.proof {
  display: grid;
  width: min(1460px, calc(100% - 80px));
  margin: 90px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.proof article {
  display: flex;
  min-height: 150px;
  align-items: center;
  gap: 18px;
  padding: 26px clamp(18px, 2.5vw, 38px);
}

.proof article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.proof strong {
  flex: 0 0 auto;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  letter-spacing: -0.05em;
}

.proof article:first-child strong {
  color: var(--orange);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
}

.proof span {
  max-width: 140px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
}

.contact-band {
  display: flex;
  width: min(1460px, calc(100% - 80px));
  margin: 90px auto;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding: 65px 70px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 101, 20, 0.25), transparent 25%),
    linear-gradient(120deg, var(--navy-deep), var(--navy-soft));
  box-shadow: 0 28px 60px rgba(3, 29, 61, 0.18);
}

.contact-band h2 {
  max-width: 700px;
  color: var(--white);
  font-size: clamp(2.1rem, 3.5vw, 4rem);
  line-height: 1.08;
}

.contact-band a {
  display: flex;
  padding: 0 0 8px;
  align-items: center;
  gap: 40px;
  border-bottom: 2px solid var(--orange);
  color: var(--white);
  font-size: clamp(0.9rem, 1.25vw, 1.1rem);
  font-weight: 700;
  text-decoration: none;
}

.contact-band a svg {
  width: 25px;
  color: var(--orange-light);
  transition: transform 180ms ease;
}

.contact-band a:hover svg {
  transform: translateX(5px);
}

footer {
  display: flex;
  width: min(1460px, calc(100% - 80px));
  min-height: 90px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer p:first-child {
  display: flex;
  gap: 8px;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-left {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.9;
    transform: scale(0.7);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .proof,
  .contact-band,
  footer {
    width: min(100% - 48px, 900px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-copy {
    max-width: 760px;
    padding-bottom: 20px;
  }

  .photo-wrap {
    min-height: 500px;
  }

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

  .proof article:nth-child(2) {
    border-right: 0;
  }

  .proof article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .proof,
  .contact-band,
  footer {
    width: calc(100% - 32px);
  }

  .site-header {
    min-height: 96px;
  }

  .brand {
    width: 180px;
  }

  .header-contact span {
    display: none;
  }

  .header-contact {
    display: grid;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-items: center;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 0;
    min-width: 0;
  }

  .hero-copy {
    min-width: 0;
    width: 100%;
    padding-top: 30px;
  }

  .status {
    margin-bottom: 28px;
    font-size: 0.59rem;
  }

  .eyebrow {
    max-width: 310px;
    line-height: 1.6;
  }

  h1 {
    font-size: clamp(2.7rem, 13.2vw, 3.65rem);
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .button {
    min-width: 0;
    width: 100%;
  }

  .service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 14px;
  }

  .service-list li::after {
    display: none;
  }

  .service-list li::before {
    flex: 0 0 auto;
    width: 4px;
    height: 4px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--orange);
    content: "";
  }

  .service-list li {
    min-width: 0;
    font-size: 0.61rem;
    overflow-wrap: anywhere;
  }

  .photo-wrap {
    min-height: 390px;
    border-radius: 70px 6px 6px 6px;
  }

  .photo-wrap > img {
    object-position: 57% center;
  }

  .photo-note {
    right: 13px;
    bottom: 13px;
    left: 13px;
    min-width: 0;
  }

  .proof {
    margin-top: 65px;
    grid-template-columns: 1fr;
  }

  .proof article {
    min-height: 112px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

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

  .contact-band {
    margin: 65px auto;
    padding: 42px 26px;
  }

  .contact-band a {
    width: 100%;
    gap: 16px;
    justify-content: space-between;
    font-size: 0.82rem;
  }

  footer {
    min-height: 120px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  footer p:first-child {
    display: block;
    line-height: 1.7;
  }

  footer p:first-child span[aria-hidden] {
    display: none;
  }
}

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