:root {
  --navy: #0a1671;
  --blue: #479ded;
  --orange: #faa61c;
  --text: #080808;
  --card: rgba(255, 255, 255, 0.55);
  --stripe: rgba(0, 122, 179, 0.34);
  --font: 'Inter', Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: #dbeaf3;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.18) 43%, rgba(255,255,255,0) 66%), url('images/image-2-2.png');
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero__stripes {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(90deg, transparent 0 52px, rgba(180, 25, 45, 0.25) 52px 127px, transparent 87px 108px);
  mix-blend-mode: multiply;
  pointer-events: none;
  padding: 0 20px;
}

.site-header {
  width: min(100% - 96px, 1280px);
  margin: 0 auto;
  padding: 28px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.logo img {
  width: 185px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  padding-top: 2px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--navy);
}

.hero__content {
  width: min(100% - 96px, 1280px);
  margin: 30px auto 0;
}

.hero__copy {
  width: min(540px, 52vw);
}

.hero__copy h1 {
  color: var(--navy);
  font-size: clamp(42px, 4.4vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.hero__copy h1 span,
.hero__copy h1 strong {
  display: block;
}

.hero__copy h1 strong {
  color: var(--blue);
  font-weight: 800;
}

.rennovation{
    color: var(--orange);
    padding: 2px 0;
}

.hero__copy p {
  max-width: 535px;
  margin-top: 18px;
  font-size: clamp(14px, 1.12vw, 18px);
  line-height: 1.13;
}

.contact-cards {
  display: flex;
  gap: clamp(28px, 4vw, 64px);
  align-items: flex-start;
  margin-top: 34px;
}

.contact-card {
  width: 292px;
  min-height: 255px;
  padding: 25px 24px 18px;
  border-radius: 13px;
  background: var(--card);
  backdrop-filter: blur(4px);
}

.contact-card--office {
  width: 292px;
  min-height: 150px;
}

.contact-card__top {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--orange);
}

.contact-card__icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
}

.contact-card__icon img {
  width: 18px;
  height: auto;
}

.contact-card h2 {
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1;
  font-weight: 400;
}

.contact-card p,
.contact-list {
  font-size: 15px;
  line-height: 1.26;
}

.contact-list {
  display: grid;
  gap: 3px;
  padding-top: 13px;
}

.contact-list div {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 6px;
}

.contact-list dt {
  color: var(--orange);
  font-weight: 400;
}

.contact-list dd {
  min-width: 0;
}

.contact-list a:hover,
.contact-list a:focus-visible,
.ship-link:hover,
.ship-link:focus-visible {
  text-decoration: underline;
}

.ship-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: var(--navy);
  font-size: 15px;
}

.ship-link span {
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 900px) {
  .hero {
    background-position: 62% center;
  }

  .site-header,
  .hero__content {
    width: min(100% - 40px, 720px);
  }

  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .hero__copy {
    width: 100%;
    max-width: 560px;
  }

  .contact-cards {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-bottom: 34px;
    background-image: linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.55)), url('images/image-2-2.png');
    background-position: center;
  }

  .hero__stripes {
    background: repeating-linear-gradient(90deg, transparent 0 36px, rgba(0, 122, 179, 0.2) 36px 46px, transparent 46px 76px);
  }

  .site-header {
    padding-top: 22px;
  }

  .logo img {
    width: 160px;
  }

  .main-nav {
    font-size: 13px;
  }

  .hero__content {
    margin-top: 28px;
  }

  .hero__copy h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .hero__copy p {
    font-size: 15px;
    line-height: 1.35;
  }

  .contact-cards {
    display: grid;
    gap: 18px;
  }

  .contact-card,
  .contact-card--office {
    width: 100%;
    min-height: 0;
  }

  .contact-card__top {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .contact-card__icon {
    width: 40px;
    height: 40px;
  }

  .contact-card h2 {
    font-size: 18px;
  }

  .contact-card p,
  .contact-list,
  .ship-link {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .site-header,
  .hero__content {
    width: min(100% - 28px, 360px);
  }

  .main-nav {
    gap: 18px;
  }

  .contact-list div {
    grid-template-columns: 58px 1fr;
  }
}
