:root {
  --petrol: #058789;
  --petrol-dark: #075f61;
  --petrol-soft: #d9efed;
  --coral: #e03f3e;
  --coral-dark: #b92f2f;
  --rose: #fbf0f0;
  --ink: #20292b;
  --muted: #5e6869;
  --paper: #fffdfb;
  --white: #ffffff;
  --line: #d8dfdf;
  --shadow: 0 24px 60px rgba(17, 55, 57, 0.14);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(5, 135, 137, 0.12);
  background: rgba(255, 253, 251, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 48px), var(--content));
  min-height: 88px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand img {
  width: 190px;
  height: auto;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navigation a {
  padding: 10px 0;
  color: var(--petrol-dark);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.navigation > a:not(.header-phone) {
  border-bottom: 2px solid transparent;
}

.navigation > a:not(.header-phone):hover,
.navigation > a:not(.header-phone):focus-visible {
  border-bottom-color: var(--coral);
}

.header-phone {
  display: inline-flex;
  min-height: 48px;
  padding: 10px 18px !important;
  border-radius: 999px;
  align-items: center;
  gap: 9px;
  background: var(--petrol);
  color: var(--white) !important;
}

.header-phone:hover,
.header-phone:focus-visible {
  background: var(--petrol-dark);
}

.header-phone svg,
.service-area svg,
.hero-note svg,
.route-link svg {
  width: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.menu-button {
  display: none;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--petrol-dark);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
}

.menu-button-text {
  margin-right: 10px;
}

.menu-icon {
  display: inline-flex;
  width: 24px;
  flex-direction: column;
  gap: 5px;
}

.menu-icon i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 90px;
}

.hero::before {
  position: absolute;
  top: 10%;
  right: -90px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: var(--rose);
  content: "";
}

.hero::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 43%;
  height: 12px;
  background: var(--coral);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  align-items: center;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 76px;
}

.hero-copy h1,
.section h2 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hero-copy h1 {
  max-width: 710px;
  color: var(--petrol-dark);
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 650;
}

.hero-copy > p:not(.service-area) {
  max-width: 630px;
  margin: 30px 0 0;
  color: #3e494b;
  font-size: 21px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--coral);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--coral-dark);
}

.text-link {
  padding: 10px 0 7px;
  border-bottom: 2px solid var(--petrol);
  color: var(--petrol-dark);
  font-weight: 750;
  text-decoration: none;
}

.service-area {
  display: flex;
  max-width: 660px;
  margin: 40px 0 0;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-area svg {
  width: 23px;
  margin-top: 1px;
  color: var(--petrol);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap::before {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 38%;
  height: 46%;
  border-top: 5px solid var(--coral);
  border-right: 5px solid var(--coral);
  content: "";
}

.hero-image {
  position: relative;
  width: 100%;
  border-radius: 2px 76px 2px 76px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: -24px;
  bottom: 28px;
  display: flex;
  max-width: 260px;
  padding: 16px 19px;
  align-items: center;
  gap: 11px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(17, 55, 57, 0.18);
  color: var(--petrol-dark);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
}

.hero-note svg {
  width: 27px;
  color: var(--coral);
}

.section {
  padding: 104px 0;
}

.section-inner,
.about-inner,
.contact-inner,
.process-inner,
.footer-inner {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.section h2 {
  max-width: 780px;
  color: var(--petrol-dark);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 650;
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  margin-top: 72px;
  grid-template-columns: repeat(3, 1fr);
}

.service {
  position: relative;
  padding: 12px 42px 6px;
  border-left: 1px solid var(--line);
}

.service:first-child {
  padding-left: 0;
  border-left: 0;
}

.service:last-child {
  padding-right: 0;
}

.service-number {
  position: absolute;
  top: -2px;
  right: 34px;
  color: #bfd9d8;
  font-size: 17px;
  font-weight: 800;
}

.service:last-child .service-number {
  right: 0;
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  place-items: center;
  background: var(--rose);
  color: var(--coral);
}

.service-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service h3 {
  margin: 28px 0 20px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.service ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service li {
  position: relative;
  margin-top: 12px;
  padding-left: 20px;
  color: #485355;
  font-size: 17px;
  line-height: 1.55;
}

.service li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--petrol);
  content: "";
}

.service-guidance {
  max-width: 820px;
  margin: 60px 0 0;
  padding: 24px 0 0 26px;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  color: var(--petrol-dark);
  font-size: 20px;
  font-weight: 620;
}

.process {
  padding: 82px 0;
  background: var(--petrol);
  color: var(--white);
}

.process-inner {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 26px 90px;
}

.process h2 {
  max-width: 440px;
  margin: 0;
  color: var(--white);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  align-items: start;
  grid-template-columns: 54px 1fr;
  gap: 19px;
}

.process-list li:first-child {
  padding-top: 4px;
  border-top: 0;
}

.process-list span {
  display: grid;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  place-items: center;
  font-size: 17px;
  font-weight: 800;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.6;
}

.process-list strong {
  color: var(--white);
  font-size: 19px;
}

.process .button {
  grid-column: 2;
  justify-self: start;
}

.button-light {
  background: var(--white);
  color: var(--petrol-dark);
  white-space: nowrap;
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--rose);
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--rose);
}

.about::after {
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(5, 135, 137, 0.08);
  border-radius: 50%;
  content: "";
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 86px;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  position: absolute;
  top: 26px;
  bottom: -26px;
  left: -26px;
  width: 74%;
  background: var(--coral);
  content: "";
}

.about-image-wrap img {
  position: relative;
  width: 100%;
  border-radius: 2px 48px 2px 48px;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  max-width: 650px;
}

.about-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #3e494b;
}

.about-copy .about-lead {
  margin-top: 30px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 590;
}

.person {
  margin-top: 25px;
  padding-left: 20px;
  border-left: 3px solid var(--petrol);
}

.person p {
  margin: 0;
}

.person strong {
  color: var(--petrol-dark);
}

.contact {
  background: var(--paper);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
}

.contact-copy {
  padding-right: 40px;
  border-right: 1px solid var(--line);
}

.contact-copy > p {
  max-width: 590px;
  margin: 27px 0 32px;
  color: var(--muted);
  font-size: 20px;
}

.contact-phone,
.contact-mail {
  display: block;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.contact-phone {
  color: var(--coral);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.contact-mail {
  margin-top: 15px;
  border-bottom: 2px solid var(--petrol);
  font-size: 21px;
  font-weight: 650;
}

.contact-details {
  padding-top: 5px;
}

.contact-details dl {
  margin: 0;
}

.contact-details dl > div + div {
  margin-top: 35px;
  padding-top: 31px;
  border-top: 1px solid var(--line);
}

.contact-details dt {
  margin-bottom: 8px;
  color: var(--petrol-dark);
  font-size: 16px;
  font-weight: 800;
}

.contact-details dd {
  margin: 0;
  color: #3e494b;
  font-size: 19px;
}

.route-link {
  display: inline-flex;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--coral);
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.route-link svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-footer {
  padding: 35px 0;
  background: #143d3e;
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
}

.footer-inner img {
  width: 145px;
  padding: 8px;
  border-radius: 3px;
  background: var(--white);
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
}

.footer-inner nav {
  display: flex;
  gap: 24px;
}

.footer-inner a {
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffce55;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .menu-button[aria-expanded="true"] .menu-icon i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .menu-button[aria-expanded="true"] .menu-icon i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .navigation {
    position: fixed;
    z-index: -1;
    top: 88px;
    right: 0;
    left: 0;
    display: none;
    padding: 28px 24px 36px;
    border-top: 1px solid var(--line);
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    background: var(--paper);
    box-shadow: 0 20px 30px rgba(17, 55, 57, 0.12);
  }

  .navigation.is-open {
    display: flex;
  }

  .navigation a {
    min-height: 52px;
    padding: 13px 4px;
    font-size: 18px;
  }

  .header-phone {
    margin-top: 12px;
    justify-content: center;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-inner,
  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .hero-image-wrap {
    width: min(100%, 660px);
  }

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

  .service,
  .service:first-child,
  .service:last-child {
    padding: 38px 0 44px 92px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-icon {
    position: absolute;
    top: 35px;
    left: 0;
  }

  .service h3 {
    margin-top: 0;
  }

  .service-number,
  .service:last-child .service-number {
    top: 38px;
    right: 0;
  }

  .process-inner {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process .button {
    grid-column: 1;
    width: fit-content;
  }

  .about-image-wrap {
    width: min(88%, 560px);
    margin-left: 26px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .contact-copy {
    padding: 0 0 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .header-inner,
  .hero-inner,
  .section-inner,
  .about-inner,
  .contact-inner,
  .process-inner,
  .footer-inner {
    width: min(calc(100% - 36px), var(--content));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 150px;
  }

  .navigation {
    top: 76px;
  }

  .hero {
    padding: 44px 0 70px;
  }

  .hero::before {
    right: -220px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-copy > p:not(.service-area) {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 31px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

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

  .hero-actions .text-link {
    width: fit-content;
  }

  .service-area {
    margin-top: 32px;
    font-size: 14px;
  }

  .hero-image-wrap {
    width: calc(100% - 8px);
  }

  .hero-image-wrap::before {
    top: -14px;
    right: -14px;
    border-width: 4px;
  }

  .hero-image {
    border-radius: 2px 48px 2px 48px;
  }

  .hero-note {
    right: -8px;
    bottom: 18px;
    max-width: 225px;
    padding: 13px 15px;
    font-size: 14px;
  }

  .section {
    padding: 76px 0;
  }

  .section h2 {
    font-size: 40px;
  }

  .service-grid {
    margin-top: 48px;
  }

  .service,
  .service:first-child,
  .service:last-child {
    padding: 32px 0 38px;
  }

  .service-icon {
    position: static;
    width: 56px;
    height: 56px;
  }

  .service-number,
  .service:last-child .service-number {
    top: 40px;
  }

  .service h3 {
    margin-top: 22px;
  }

  .process {
    padding: 66px 0;
  }

  .process-list li {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .process-list span {
    width: 40px;
    height: 40px;
  }

  .about-inner {
    gap: 65px;
  }

  .about-image-wrap {
    width: calc(100% - 18px);
    margin-left: 18px;
  }

  .about-image-wrap::before {
    top: 18px;
    bottom: -18px;
    left: -18px;
  }

  .about-copy .about-lead {
    font-size: 19px;
  }

  .person {
    padding-left: 15px;
  }

  .contact-phone {
    font-size: 36px;
  }

  .contact-mail {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .footer-inner {
    justify-items: start;
    grid-template-columns: 1fr;
    gap: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
