@charset "UTF-8";
/* Warning: Limiting how large text can get with max() or clamp() can
   cause a WCAG failure under 1.4.4 Resize text (AA), as a user may be
   unable to scale the text to 200% of its original size. Be certain to
   test the results with zoom.
   https://web.dev/min-max-clamp/
*/
/* Partially adapted from Tachyons
 * https://github.com/tachyons-css/tachyons/blob/main/src/_normalize.css
 */
*, *:before, *:after {
  box-sizing: border-box;
}

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  height: 100%;
}

body {
  margin: 0;
}

ul,
ol {
  font-size: var(--type-medium);
  line-height: 1.5;
  padding-left: 3ch;
}

li {
  margin-bottom: 0.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 2em 0 0.75em;
  font-family: "Fira Sans", sans-serif;
  color: #244f59;
}

h1 {
  font-size: var(--type-xxx-large);
}

h2 {
  font-size: var(--type-x-large);
}

h3 {
  font-size: var(--type-large);
}

h4 {
  font-size: var(--type-medium);
}

h5 {
  font-size: var(--type-small);
}

h6 {
  font-size: var(--type-x-small);
}

p {
  font-size: var(--type-medium);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration-skip-ink: auto;
  /*text-decoration-thickness: 0.1em;*/
  text-decoration-color: transparent;
  transition: 200ms ease-in-out all;
}

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

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

em {
  font-variant-ligatures: none;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

address {
  font-style: normal;
}

:root {
  --background-color: #ffffff;
  --accent-color: #ff8273;
  --type-xxx-small: 55%;
  --type-xx-small: 65%;
  --type-x-small: 75%;
  --type-small: 85%;
  --type-medium: 100%;
  --type-large: 125%;
  --type-x-large: 150%;
  --type-xx-large: 200%;
  --type-xxx-large: 400%;
  --type-base: calc(1em + 0.375vw);
}

body {
  margin: 0;
  background-color: var(--background-color);
  font-family: "Jost", sans-serif;
  color: #244f59;
  font-size: var(--type-base);
  height: 100%;
  /* Do not set a font-size on a :root, body nor html level
     Let your main text size be decided by the browser or the user settings
     https://css-tricks.com/accessible-font-sizing-explained/
  */
  /* Necessary for full-width container
     https://codepen.io/chriscoyier/pen/xOjaYA
  */
  overflow-x: hidden;
}

/* Post Tags */
a[rel=tag],
a[rel=tag]:visited {
  font-size: var(--type-x-small);
  display: inline-block;
  vertical-align: text-top;
  padding: 0 0.5em;
  line-height: 2em;
  height: 2em;
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  color: var(--primary);
  border-radius: 0.25em;
  text-decoration: none;
  margin: 0 0.5em 0.5em 0;
}

a[rel=tag]:hover {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--secondary);
}

a[rel=tag]:last-child {
  margin-right: 0;
}

a[href^=mailto] {
  hyphens: none;
  white-space: nowrap;
  word-break: keep-all;
}

/* Contact Form */
form {
  padding: 2em 0;
}

form label {
  display: none;
}

input,
textarea,
button {
  width: 100%;
  padding: 1em;
  margin-bottom: 1em;
  font-size: 1em;
  font-family: "Jost", sans-serif;
}

input,
textarea {
  border: 1px solid black;
}

button {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--secondary);
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  hyphens: auto;
}
@media (min-width: 45em) {
  h1,
h2,
h3,
h4 {
    hyphens: none;
  }
}

p {
  hyphens: none;
}

main a {
  color: #c47272;
}

blockquote {
  font-size: var(--type-medium);
  font-style: italic;
  position: relative;
  margin-left: 0;
  padding-top: 0.125rem;
  padding-left: 3em;
}
blockquote::before {
  content: "“";
  position: absolute;
  display: block;
  top: -0.75rem;
  left: 0;
  font-size: 6em;
  font-family: "Fira Sans", sans-serif;
  color: var(--accent-color);
}
blockquote p {
  line-height: 1.35;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
blockquote > p:last-of-type {
  margin-top: 1rem;
  color: #c47272;
  font-style: normal;
}

.main {
  width: 100%;
  max-width: 60em;
  margin-left: auto;
  margin-right: auto;
}
.main a:hover {
  text-decoration-color: #c47272;
}

.page-title {
  margin-top: 2rem;
  font-size: var(--type-xx-large);
}
@media (min-width: 45em) {
  .page-title {
    font-size: var(--type-xxx-large);
  }
}
@media (min-width: 60em) {
  .page-title {
    margin-top: 6rem;
  }
}
.page-title.--hero {
  margin-top: 0;
}

.lead {
  font-size: var(--type-large);
}

.drawing {
  width: 100%;
  height: 100%;
  max-width: 640px;
  max-height: 480px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
}

.gallery__item {
  display: block;
  flex: 1 1 18rem;
  margin: 0.25em;
  transition: 200ms ease-in-out all;
}
.gallery__item:hover {
  outline: 0.25rem solid #c47272;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox__image {
  display: block;
  width: 100%;
  max-width: 60em;
  max-height: 100vh;
}
.lightbox__image > img {
  width: 100%;
}

.lightbox__close {
  position: fixed;
  top: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  padding: 0.5rem;
  background-color: #ffffff;
  color: #244f59;
}
.lightbox__close:hover {
  color: #c47272;
}

.date {
  margin-top: 4rem;
  font-style: italic;
}

.container {
  max-width: 45em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
  padding-left: 1em;
  padding-right: 1em;
}
@media (min-width: 60em) {
  .container {
    margin-bottom: 6rem;
  }
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.button {
  display: inline-block;
  background-color: #c47272;
  width: auto;
  border-radius: 0.5em;
  text-align: center;
  padding: 0.75em 1em;
  text-decoration: none;
  color: #ffffff;
  border: none;
  font-weight: 700;
  transition: all 0.2s ease-out;
}
.button:hover, .button:focus, .button:active {
  background-color: rgba(196, 114, 114, 0.8);
}

.banderole {
  border-top: 0.0625rem solid #f0f0f0;
}

.contact {
  width: 100%;
  max-width: 60em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact a:hover {
  color: #c47272;
}

.contact__box {
  font-size: var(--type-medium);
  padding: 1em;
}

.box__title {
  font-size: var(--type-x-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25em;
  color: #c47272;
}

.box__address {
  line-height: 1.5;
}

.faq:not(:first-of-type) {
  border-top: 0.0625rem solid #f0f0f0;
}
.no-js .faq {
  display: flex;
  flex-wrap: wrap;
}
.faq button {
  padding-left: 0;
  padding-right: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0;
  text-align: left;
  align-items: center;
}
.faq button:hover {
  color: #c47272;
}
.faq button:focus svg {
  color: #c47272;
}
.faq button svg {
  flex: 0 0 1.125em;
  height: 100%;
  width: 100%;
  transform-origin: 0 25%;
  transition: transform 200ms ease-in-out;
}
.no-js .faq button svg {
  display: none;
}
.faq button span {
  font-weight: 700;
  padding-right: 1em;
}
.faq [aria-expanded=true] svg {
  transform: rotate3d(1, 0, 0, 180deg);
}

.faq__question {
  font-size: var(--type-medium);
  font-family: "Jost", sans-serif;
  margin: 0;
}
.no-js .faq__question {
  flex: 1 1 22rem;
  padding-right: 2rem;
}

.no-js .faq__answer {
  flex: 1 1 44rem;
}

.footer {
  border-top: 0.0625rem solid #f0f0f0;
  text-align: center;
}
@media (min-width: 45em) {
  .footer {
    text-align: right;
  }
}

.footer__inner {
  max-width: 60em;
  margin: 0 auto;
}
.footer__inner ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.footer__inner li {
  font-size: var(--type-medium);
  display: inline-block;
  margin-bottom: 0;
  padding: 1em;
  list-style: none;
}
.footer__inner a:hover {
  color: #c47272;
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 60em;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.header__logo {
  display: flex;
  flex: 1 0 auto;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
@media (min-width: 45em) {
  .header__logo {
    justify-content: flex-start;
  }
}

.logo {
  display: flex;
  align-items: center;
}
.logo:hover {
  color: #c47272;
}

.logo__text {
  font-size: var(--type-medium);
  margin-left: 0.5em;
  float: right;
  font-family: "Jost", sans-serif;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.0125em;
  font-style: normal;
  font-weight: 700;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
  padding-top: 2rem;
  max-width: 60em;
}
@media (min-width: 60em) {
  .hero {
    flex-wrap: nowrap;
    padding-top: 6rem;
  }
}

.hero__text {
  position: relative;
  flex: 1 1 22rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 60em) {
  .hero__text {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.--services .hero__text {
  flex: 3 1 33rem;
}

.hero__image {
  position: relative;
  flex: 1 1 22rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.hero__image.--blog img, .hero__image.--contact img, .hero__image.--faq img, .hero__image.--services img {
  max-height: 50vh;
  width: 100%;
}
@media (min-width: 60em) {
  .hero__image {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.navigation {
  width: 100%;
  color: #c47272;
}
@media (min-width: 45em) {
  .navigation {
    width: auto;
  }
}
.navigation ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navigation li {
  display: block;
  margin: 0;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  position: relative;
}
.navigation:hover li {
  color: #c0c0c0;
}
.navigation:hover li:hover {
  color: #c47272;
}
.navigation a[data-current] {
  position: relative;
}
.navigation a[data-current]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 8px;
  display: inline-block;
  font-style: normal;
  background-position: 50% 100%;
  background-size: 100% 6px;
  background-repeat: no-repeat;
  animation-duration: 800ms;
  animation-timing-function: ease-in-out;
  animation-name: fadeIn;
}
.navigation a[data-current=about]::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" width="180" height="12" viewBox="0 0 47.625 3.175"><path d="M.53 1.23C2.177.936 3.826.64 5.55.997c1.725.357 3.524 1.364 5.461 1.338 1.938-.026 4.013-1.086 5.977-1.055 1.965.031 3.817 1.153 5.851 1.093 2.034-.06 4.25-1.302 6.208-1.346 1.958-.044 3.658 1.11 5.3 1.16 1.643.048 3.23-1.01 4.576-.925 1.347.085 2.452 1.313 3.774 1.38 1.322.069 2.86-1.022 4.399-2.113" fill="none" stroke="%23c47272" stroke-width="1.058" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.navigation a[data-current=blog]::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" width="80" height="12" viewBox="0 0 21.167 3.174"><path d="M.53 2.645C1.971 1.497 3.432.333 4.778.558c1.345.224 2.644 1.847 4.025 1.889 1.382.042 2.864-1.475 4.2-1.611C14.34.7 15.53 1.944 16.777 2.334c1.248.39 2.554-.074 3.86-.537" fill="none" stroke="%23c47272" stroke-width="1.058" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.navigation a[data-current=contact]::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" width="120" height="12" viewBox="0 0 31.75 3.175"><path d="M.53 1.72C2.32 1.045 4.11.37 5.635.565 7.161.76 8.37 1.781 9.76 1.888c1.39.107 2.938-.72 4.334-.64 1.395.081 2.677 1.102 4.142 1.084 1.465-.017 3.133-1.056 4.41-1.029 1.278.027 2.235 1.208 3.599 1.33 1.364.123 3.17-.769 4.976-1.66" fill="none" stroke="%23c47272" stroke-width="1.058" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.navigation a[data-current=faq]::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" width="70" height="12" viewBox="0 0 18.521 3.175"><path d="M.53 1.47C2.376.86 4.192.26 5.973.661c1.78.403 3.405 1.78 5.391 1.962 1.986.182 4.307-.855 6.627-1.891" fill="none" stroke="%23c47272" stroke-width="1.058" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.navigation a[data-current=services]::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" width="180" height="12" viewBox="0 0 47.625 3.175"><path d="M.53 2.127C2.226 1.409 3.996.66 5.63.76c1.635.099 3.208 1.053 4.83.957C12.082 1.62 13.774.486 15.83.53c2.055.044 4.43 1.245 6.437 1.38 2.006.134 3.62-.81 5.497-.697 1.877.114 3.972 1.26 5.805 1.361 1.832.1 3.423-.881 4.851-.937 1.429-.056 2.716.802 4.138.973 1.422.171 2.98-.343 4.538-.858" fill="none" stroke="%23c47272" stroke-width="1.058" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.post:not(:first-of-type) {
  border-top: 0.0625rem solid #f0f0f0;
}

.post__title {
  font-size: var(--type-x-large);
}

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