@font-face {
  font-family: "Rozha One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/rozhaone-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/roboto-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --purple: #7933b7;
  --purple-dark: #5a2788;
  --blue: #075099;
  --lavender: #d4adee;
  --white: #ffffff;
  --black: #000000;
  --grey: #f4f4f4;
  --text: #54595f;
  --muted: #7a7a7a;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--purple);
}

.section-inner,
.header-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.narrow {
  max-width: 1060px;
}

.site-header {
  background: var(--white);
  min-height: 136px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: grid;
  grid-template-columns: 21fr 70fr 9fr;
  align-items: center;
  gap: 0;
  padding: 20px 16px 18px;
}

.brand img {
  display: block;
  width: min(79%, 172px);
  min-width: 140px;
  height: auto;
}

.menu-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.menu-toggle {
  width: 70px;
  height: 70px;
  display: grid;
  place-content: center;
  gap: 7px;
  border: 0;
  background: rgba(255, 255, 255, 0.54);
  cursor: default;
}

.menu-toggle span {
  display: block;
  width: 38px;
  height: 6px;
  border-radius: 8px;
  background: var(--purple);
}

.menu {
  position: absolute;
  top: 64px;
  left: 50%;
  z-index: 5;
  width: min(260px, 82vw);
  transform: translateX(-50%);
  display: none;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.menu-wrap:hover .menu,
.menu-wrap:focus-within .menu {
  display: grid;
}

.menu a {
  padding: 13px 20px;
  color: var(--purple);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.menu a:hover,
.menu a:focus {
  color: var(--purple-dark);
}

.socials {
  display: flex;
  justify-content: end;
  gap: 5px;
}

.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
}

.socials svg {
  width: 15px;
  height: 15px;
  fill: var(--white);
}

.hero {
  background: linear-gradient(144deg, var(--blue) 0%, var(--purple) 52%);
}

.hero-inner {
  width: min(var(--max), 100%);
  min-height: 489px;
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  margin: 0 0 28px;
  color: var(--white);
  font-family: "Rozha One", Georgia, serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.45;
}

.hero p {
  max-width: 590px;
  margin: 0 0 52px;
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 194px;
  min-height: 66px;
  padding: 16px 34px;
  border-radius: 999px;
  color: var(--purple);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.button-fill {
  border: 3px solid var(--lavender);
  background: var(--lavender);
}

.button-outline {
  border: 3px solid var(--lavender);
  background: transparent;
  color: var(--lavender);
  font-weight: 500;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-art img {
  width: 70%;
  max-width: 430px;
  height: auto;
}

.about-section {
  padding: 48px 16px;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--lavender);
  font-family: "Rozha One", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
}

.about-section h2,
.contact-section h2 {
  margin-bottom: 24px;
}

.about-section p,
.contact-section p {
  margin: 0 auto 26px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.65;
}

.services-title {
  padding: 16px;
  background: var(--grey);
  text-align: center;
}

.services-grid {
  background: var(--grey);
  border-bottom: 9px solid var(--white);
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.service-column {
  padding: 16px;
}

.service-column img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 250px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.service-column .secretarial-art {
  height: 230px;
  margin-top: 34px;
}

.service-column h3 {
  margin: 0 0 20px;
  color: var(--purple);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
}

.service-column ul {
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.testimonial {
  padding: 48px 48px 40px;
  background: linear-gradient(144deg, var(--blue) 0%, var(--purple) 52%);
  color: var(--white);
  text-align: center;
}

.testimonial img {
  width: 15%;
  max-width: 120px;
  min-width: 72px;
  margin-bottom: 16px;
}

.testimonial blockquote {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.testimonial p {
  margin: 10px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.1px;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-section {
  padding-top: 48px;
  text-align: center;
}

.contact-section .section-inner {
  padding: 0 16px;
}

.contact-section iframe {
  display: block;
  width: 100%;
  height: 525px;
  border: 0;
}

.site-footer {
  padding: 18px 16px;
  background: #f4f4f4;
  color: var(--text);
  font-size: 14px;
  text-align: center;
}

.site-footer a {
  color: var(--purple);
}

@media (min-width: 1180px) {
  .menu-toggle {
    display: none;
  }

  .menu {
    position: static;
    width: auto;
    transform: none;
    display: flex;
    justify-content: center;
    gap: 34px;
    background: transparent;
    box-shadow: none;
  }

  .menu-wrap:hover .menu,
  .menu-wrap:focus-within .menu {
    display: flex;
  }

  .menu a {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .site-header {
    min-height: 236px;
  }

  .header-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px 18px;
  }

  .brand img {
    width: min(274px, 86vw);
    min-width: 0;
  }

  .menu-toggle {
    width: 58px;
    height: 58px;
  }

  .menu-toggle span {
    width: 34px;
    height: 5px;
  }

  .socials {
    display: flex;
    justify-content: center;
    gap: 7px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 32px 16px 48px;
  }

  .hero h1 {
    margin-bottom: 32px;
    font-size: 46px;
    line-height: 0.9;
    text-align: center;
  }

  .hero p {
    margin-bottom: 28px;
    text-align: center;
  }

  .actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .button {
    width: 80%;
  }

  .hero-art img {
    width: min(74%, 330px);
    margin-top: 20px;
  }

  .about-section {
    padding: 32px 16px 16px;
  }

  h2 {
    line-height: 0.9;
  }

  .about-section p,
  .contact-section p {
    font-size: 16px;
  }

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

  .service-column img,
  .service-column .secretarial-art {
    height: auto;
    max-height: 250px;
  }

  .testimonial {
    padding: 32px 16px 48px;
  }

  .testimonial blockquote {
    line-height: 1.7;
  }
}
