@charset "UTF-8";
@font-face {
  font-family: "Galley";
  src: url("/fonts/Galley.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("/fonts/RobotoSlab.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("/fonts/Raleway.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway Italic";
  src: url("/fonts/Raleway-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PT Mono";
  src: url("/fonts/PTMono.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.nav {
  display: flex;
  justify-content: space-between;
  height: 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.nav a {
  color: #2C3E50;
  text-decoration: none;
  transition: color 300ms ease;
}
.nav a:hover {
  color: rgb(55, 118.3333333333, 200);
}
.nav__header {
  display: flex;
  justify-content: space-between;
  background-color: white;
  width: 100%;
  padding: 10px 30px;
  z-index: 3;
}
.nav__header-wordmark {
  font-family: "Galley", sans-serif;
  font-size: 2.6rem;
}
.nav__header-btn {
  position: relative;
  width: 35px;
  height: 35px;
  padding: 5px;
  cursor: pointer;
}
.nav__header-btn svg {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  transition: opacity 200ms ease-in-out;
}
.nav__header-btn svg.menu {
  opacity: 1;
  pointer-events: all;
}
.nav__header-btn svg.close {
  opacity: 0;
  pointer-events: none;
}
.nav--open .nav__header-btn svg.menu {
  opacity: 0;
  pointer-events: none;
}
.nav--open .nav__header-btn svg.close {
  opacity: 1;
  pointer-events: all;
}
.nav__links {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 0 30px 30px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-100%);
  transition: transform 200ms ease-in-out;
  z-index: 2;
}
.nav__links::before {
  content: "〜〜〜〜〜〜〜〜〜〜〜";
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
}
.nav__links a {
  font-size: 1.8rem;
  font-weight: 200;
}
.nav::after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease-in-out;
}
.nav.nav--open::after {
  opacity: 1;
  pointer-events: all;
}
.nav.nav--open .nav__links {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .nav {
    align-items: center;
    padding: 20px 30px;
  }
  .nav__header, .nav__links {
    padding: 0;
  }
  .nav__header {
    width: auto;
  }
  .nav__header-btn {
    display: none;
  }
  .nav__links {
    position: static;
    transform: none;
    flex-direction: row;
    gap: 20px;
    width: auto;
  }
  .nav__links::before {
    content: none;
  }
  .nav__links a::after {
    content: "〜";
    display: inline-block;
    margin-left: 20px;
    transform: rotate(90deg);
  }
  .nav__links a:last-child::after {
    content: none;
  }
  .nav::after {
    content: none;
  }
}

.intro {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  max-width: 1200px;
  padding: 40px 30px 10px;
  margin: 0 auto 120px;
}
.intro::before, .intro::after {
  content: "";
  background: burlywood;
  display: block;
  position: absolute;
}
.intro::before {
  top: 0;
  left: calc((100vw - min(100vw, 1200px)) / -2);
  width: 100vw;
  height: 100%;
}
.intro::after {
  top: 100%;
  height: 100px;
  width: 170vw;
  margin: 0 -45vw 0 -25vw;
  border-radius: 0px 0px 90% 10%;
  transform: translateY(-50%);
}
.intro-section {
  position: relative;
  z-index: 1;
}
.intro-image {
  display: block;
  height: auto;
  max-width: 300px;
  margin: 0 0 40px;
}
.intro-title {
  text-transform: uppercase;
  font-weight: 400;
}
.intro-text {
  color: #655555;
  font-size: 1.8rem;
  max-width: 600px;
}
.intro-text:not(:last-of-type) {
  margin-bottom: 20px;
}
.intro-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 30px;
}
.intro-note .icon {
  font-size: 2.8rem;
  vertical-align: middle;
}
.intro-note .mono {
  font-family: "PT Mono", Courier, monospace;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1em;
  transform: translateY(1px);
}
.intro--simple {
  background: none;
  margin-bottom: 0;
}
.intro--simple::after {
  content: none;
}
.intro--simple .intro-title {
  text-transform: none;
}
@media (min-width: 768px) {
  .intro {
    display: grid;
    align-items: center;
    padding-bottom: 50px;
  }
  .intro-image {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
  }
  .intro--2-col {
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 50px;
  }
}
@media (min-width: 800px) {
  .intro::after {
    width: 150vw;
    margin: 0 -25vw;
    border-radius: 0px 0px 100% 25%;
  }
}

.gallery {
  width: calc(100vw - 60px);
  max-width: 1140px;
  margin: 70px auto 50px;
}
.gallery-item img {
  display: block;
  width: 100%;
}
.gallery-item.compare-pic {
  cursor: pointer;
}
.gallery-item.compare-pic::after {
  content: "✵";
  color: white;
  font-size: 28px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}
.gallery-item.compare-pic img:first-child {
  position: relative;
  z-index: 1;
  transition: opacity 500ms ease-out;
}
.gallery-item.compare-pic img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (hover: none) {
  .gallery-item.compare-pic.hover img:first-child {
    opacity: 0;
  }
}
@media (hover: hover) {
  .gallery-item.compare-pic:hover img:first-child {
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .gallery {
    margin-top: 100px;
  }
}
.gallery.untiled {
  column-count: 1;
  column-gap: 20px;
}
@media (min-width: 500px) {
  .gallery.untiled {
    column-count: 2;
  }
}
@media (min-width: 924px) {
  .gallery.untiled {
    column-count: 3;
  }
}
.gallery.untiled .gallery-item {
  position: relative;
  break-inside: avoid;
}
.gallery.untiled .gallery-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.homepage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 40px 80px;
}
.homepage__img {
  position: relative;
  overflow: hidden;
  display: block;
}
.homepage__img img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 300ms ease;
}
.homepage__img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 300ms ease;
}
.homepage__img-overlay h2 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.homepage__img:hover img {
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .homepage {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px;
    max-width: 1300px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.contact-form__container {
  max-width: 600px;
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.contact-form__group label {
  color: #2C3E50;
  font-weight: 200;
  margin-bottom: 5px;
}
.contact-form__group label::after {
  content: "*";
  color: darkred;
  margin-left: 4px;
}
.contact-form__group input,
.contact-form__group textarea,
.contact-form__group button {
  font-size: 1.6rem;
  border: 2px solid #DDD;
  border-radius: 4px;
}
.contact-form__group input,
.contact-form__group textarea {
  padding: 5px;
  transition: border-color 300ms ease;
}
.contact-form__group input:focus,
.contact-form__group textarea:focus {
  outline: none;
  border-color: burlywood;
}
.contact-form__group textarea {
  resize: vertical;
}
.contact-form .submit-btn {
  padding: 15px 40px;
  background-color: burlywood;
  border: none;
  cursor: pointer;
  transition: all 300ms ease;
}
.contact-form .submit-btn:hover {
  color: white;
  background-color: rgb(55, 118.3333333333, 200);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
input,
textarea,
button {
  font-family: "Raleway", sans-serif;
  font-size: 1.6rem;
}

html {
  font-size: 10px;
}

body {
  line-height: 1.5;
  color: #2C3E50;
  background-color: white;
}

main {
  overflow: hidden;
  min-height: calc(100vh - 100px - 60px);
}
main > div {
  max-width: 1400px;
  margin: 0 auto;
}

footer {
  padding: 40px;
  text-align: center;
  height: 100px;
}
footer a {
  color: #2C3E50;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

h1,
h2 {
  font-family: "Roboto Slab", Georgia, serif;
  margin-bottom: 0.5em;
  line-height: 1.1;
  font-weight: 400;
}

h1 {
  font-size: 3.6rem;
}

a {
  transition: color 300ms ease;
}

button {
  -webkit-appearance: button;
  background: 0 0;
  border: 0;
  border-radius: 0;
  padding: 0;
}

@media (min-width: 768px) {
  h1 {
    font-size: 4rem;
  }
}

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