@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  line-height: 1.4;
  font-size: 1.1rem;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2 {
  text-wrap: balance;
  margin-block-end: 1rem;
}

h3, h4 {
  text-wrap: balance;
  margin-block-end: 0.5rem;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
  background: linear-gradient(127deg, hsl(343, 70%, 25%), hsla(343, 75%, 35%, 0.1) 70%), linear-gradient(336deg, hsl(309, 70%, 35%), hsla(309, 75%, 35%, 0.1) 70%), linear-gradient(217deg, hsl(38, 70%, 45%), hsla(38, 75%, 35%, 0.1) 70%);
  color: hsl(309, 70%, 95%);
  font-family: "Outfit", sans-serif;
}
body .cta {
  width: fit-content;
  background-color: hsl(309, 70%, 95%);
  padding: 0.5rem 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  color: hsl(343, 20%, 20%);
  mix-blend-mode: screen;
  margin-block-end: 1rem;
}
body a {
  text-decoration: none;
}
body .brand {
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: 200;
}
body .brand strong {
  font-weight: 600;
}

.container {
  width: min(100vw - 2rem, 75rem);
  margin-inline: auto;
}

header {
  border-bottom: 2px solid hsl(309, 70%, 95%);
}
header .container {
  position: relative;
  height: clamp(6rem, 15vw, 15rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
header ul {
  display: flex;
  gap: 1rem;
}
@media (max-width: 555px) {
  header ul {
    display: none;
  }
}
header .skyline {
  position: absolute;
  padding-top: calc(clamp(6rem, 15vw, 15rem) / 2);
  width: clamp(10rem, 40vw, 50rem);
  margin-inline: auto;
  left: 0;
  right: 0;
  bottom: -0.075rem;
  overflow: hidden;
}
header .skyline > img {
  margin-inline: auto;
}
header .skyline .timekeeper {
  display: flex;
  justify-content: space-between;
  width: 45%;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: 0;
}
header .skyline .timekeeper img {
  width: 1rem;
}

main {
  margin-block: clamp(1rem, 3vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 5rem);
}
@media (min-width: 900px) {
  main .container {
    display: grid;
    column-gap: 1rem;
    justify-content: space-between;
  }
  main .container h2, main .container h3, main .container h4 {
    grid-column: 1/3;
  }
  main .container p {
    max-width: 50ch;
  }
}
main h2 {
  font-size: 3rem;
  font-weight: 500;
}
main p:not(:last-child) {
  margin-block-end: 1rem;
}

.hero .container {
  grid-template-columns: repeat(2, auto);
}
.hero .tagline {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero .tagline h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: clamp(2rem, 8vw, 3.5rem);
  font-weight: 200;
}
.hero .tagline h1 em {
  font-weight: 500;
  display: block;
}

.work .container {
  display: grid;
  column-gap: 2rem;
  row-gap: 1rem;
}
@media (min-width: 900px) {
  .work .container {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0;
  }
  .work .container h2 {
    grid-column: 1/span 4;
  }
}
.work .card {
  box-sizing: border-box;
  color: hsl(343, 20%, 20%);
  mix-blend-mode: screen;
  background-color: hsl(309, 70%, 95%);
}
.work .card .image-container {
  border: 1rem solid hsl(309, 70%, 95%);
  overflow: hidden;
}
.work .card h3, .work .card p {
  margin-inline: 1rem;
}
.work .card p {
  margin-block-end: 1rem;
}
.work .card h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.work .card h3::after {
  font-family: "Material Symbols Outlined";
  content: "\e5cc";
  transition: all 350ms ease-out;
  transform: translateX(-2rem);
  opacity: 0;
}
.work .card:hover h3::after {
  transform: translateX(0);
  opacity: 1;
}

.services .container {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.services .container h2 {
  grid-column: 1/span 3;
}
.services .container > div {
  display: flex;
}
.services .content {
  border-left: 2px solid hsl(309, 70%, 95%);
  border-top: 2px solid hsl(309, 70%, 95%);
  margin-top: calc(3rem - 2px);
  margin-left: -2px;
  padding: 0.5rem;
}
.services .material-symbols-outlined {
  height: fit-content;
  background-color: hsl(309, 70%, 95%);
  color: hsl(343, 20%, 20%);
  mix-blend-mode: screen;
  user-select: none;
  padding: 0.5rem;
  font-size: 2rem;
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 200, "opsz" 24;
}

footer {
  background: #000000;
  background: linear-gradient(90deg, rgb(0, 0, 0) 20%, rgba(255, 255, 255, 0) 75%);
  mix-blend-mode: screen;
  padding-block: 1rem;
}
footer .container > div {
  margin-block-end: 1rem;
}
@media (min-width: 900px) {
  footer .container {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    align-items: end;
  }
  footer .container > div {
    margin-block-end: 0;
  }
}
footer .contact {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: fit-content;
}
footer .contact li a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
footer .contact li a .material-symbols-outlined {
  line-height: 0;
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 200, "opsz" 24;
}
footer .copyright {
  opacity: 0.75;
}

.portfolio .container:last-of-type {
  grid-template-columns: 3fr 2fr;
  border-block-end: 2px solid hsl(309, 70%, 95%);
  gap: 2rem;
}
.portfolio h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-block-end: 0;
}
.portfolio .tagline {
  font-style: italic;
}
.portfolio .cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.portfolio .cta .material-symbols-outlined {
  font-size: 1.5rem;
  line-height: 0;
}
.portfolio .cta.back {
  gap: 0;
  font-size: 0.9rem;
  padding-inline-start: 0.2rem;
  margin-block-end: 1rem;
}
.portfolio .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.portfolio .img {
  border: 1rem solid hsl(309, 70%, 95%);
  mix-blend-mode: screen;
}
.portfolio p:last-of-type {
  margin-block-end: 1rem;
}

/*# sourceMappingURL=main.css.map */