:root {
  --orange: #fd9008;
  --orange-soft: #f8a13f;
  --blue: #00395d;
  --blue-soft: #0f5377;
  --text-light: #f6f6f6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #e9edf0;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--orange);
}

.container {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 38%);
}

.hero__orange-accent {
  position: absolute;
  right: -80px;
  top: -120px;
  width: 340px;
  height: 760px;
  border-radius: 200px;
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(8deg);
  z-index: 1;
}

.hero__blue-wave {
  position: absolute;
  left: -220px;
  right: -160px;
  bottom: -220px;
  height: 62%;
  border-top-right-radius: 48% 60%;
  border-top-left-radius: 44% 40%;
  background: var(--blue);
  z-index: 1;
}

.hero__blue-wave-soft {
  position: absolute;
  left: -300px;
  bottom: 140px;
  width: 64%;
  height: 330px;
  border-radius: 55% 45% 50% 50%;
  background: linear-gradient(20deg, rgba(16, 95, 131, 0.42), rgba(16, 95, 131, 0.12));
  z-index: 2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 34px;
  gap: 20px;
}

.brand img {
  width: 210px;
  max-width: 100%;
  display: block;
}

.menu {
  display: flex;
  gap: 22px;
  align-items: center;
}

.menu a {
  color: var(--text-light);
  text-decoration: none;
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 500;
}

.content {
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 42px;
  padding-top: 120px;
  padding-bottom: 90px;
}

.copy {
  color: var(--text-light);
  max-width: 700px;
}

.copy h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  text-shadow: 0 8px 14px rgba(0, 0, 0, 0.24);
  max-width: 18ch;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.copy h2 {
  margin: 10px 0 24px;
  font-size: clamp(46px, 4.2vw, 74px);
  font-weight: 400;
}

.copy p {
  margin: 0 0 54px;
  font-size: clamp(22px, 1.5vw, 31px);
  line-height: 1.45;
  max-width: 840px;
}

.cta {
  display: inline-block;
  background: var(--white);
  color: #3d3f44;
  text-decoration: none;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 600;
  border-radius: 999px;
  padding: 14px 34px;
}

.portrait-wrap {
  position: relative;
  width: 420px;
  margin-left: -20px;
}

.portrait {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ring {
  position: absolute;
  border: 9px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  z-index: 4;
}

.ring--1 {
  width: 34px;
  height: 34px;
  top: -12px;
  right: 58px;
}

.ring--2 {
  width: 46px;
  height: 46px;
  top: 34px;
  right: 10px;
}

@media (max-width: 1150px) {
  .menu {
    gap: 16px;
  }

  .content {
    grid-template-columns: 1fr;
    padding-top: 72px;
    gap: 34px;
  }

  .portrait-wrap {
    margin: 0;
    width: min(360px, 100%);
  }

  .portrait {
    width: min(360px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .copy p {
    font-size: 18px;
  }

  .cta {
    font-size: 22px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1200px, calc(100% - 28px));
  }

  .nav {
    padding-top: 18px;
  }

  .menu {
    margin-left: auto;
    gap: 12px;
  }

  .menu a {
    font-size: 14px;
  }

  .copy h2 {
    margin-top: 6px;
  }

  .copy p {
    margin-bottom: 30px;
    font-size: 17px;
  }

  .cta {
    font-size: 18px;
    padding: 12px 24px;
  }

  .hero__blue-wave {
    height: 52%;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 150px;
  }

  .content {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .copy h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .copy h2 {
    font-size: clamp(28px, 8.5vw, 36px);
  }
}
