@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fcfcfc;
}

main {
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  padding: 20px 0;
  position: relative;
  z-index: 1001;
}

.site-header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 34px;
}
@media (max-width: 768px) {
  .site-header__inner {
    justify-content: space-between;
    gap: 0;
  }
}

.site-logo {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  place-items: start;
  line-height: 0;
}

.site-logo__icon {
  grid-area: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 127px;
  height: 102px;
  z-index: 1;
}
.site-logo__icon img {
  transform: rotate(167deg) scaleY(-1);
  width: 112px;
  height: auto;
}
@media (max-width: 768px) {
  .site-logo__icon {
    width: 80px;
    height: 64px;
  }
  .site-logo__icon img {
    width: 70px;
  }
}

.site-logo__text {
  grid-area: 1/1;
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 810;
  font-size: 34px;
  letter-spacing: -2.4px;
  color: #3f3f3f;
  line-height: normal;
  margin-left: 112px;
  margin-top: 30px;
  white-space: nowrap;
  z-index: 2;
}
@media (max-width: 768px) {
  .site-logo__text {
    font-size: 24px;
    letter-spacing: -1.68px;
    margin-left: 70px;
    margin-top: 20px;
  }
}

.site-nav {
  padding-top: 8px;
}
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
}

.site-nav__list {
  display: flex;
  gap: 17px;
  align-items: center;
}

.site-nav__item {
  opacity: 0.66;
}
.site-nav__item:has(.is-active) {
  opacity: 1;
}

.site-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  transition: opacity 0.2s;
}
.site-nav__link:hover {
  opacity: 1;
}

.site-nav__text {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: -0.7px;
  color: #3f3f3f;
}

.site-nav__underline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 7px;
  opacity: 0;
  transform: rotate(1deg);
  transition: opacity 0.2s;
}
.site-nav__underline img {
  width: 44px;
  height: auto;
}
.is-active .site-nav__underline {
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 26px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.hamburger__line {
  width: 44px;
  height: 6px;
  object-fit: contain;
  transform: rotate(1.07deg);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fcfcfc;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s;
  overflow: hidden;
}

.mobile-menu.is-open .mobile-menu__content {
  transform: translateX(0);
}

.mobile-menu__nav {
  padding: 170px 0 0 74px;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: opacity 0.2s;
}
.mobile-menu__link:hover {
  opacity: 0.7;
}

.mobile-menu__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  flex-shrink: 0;
}
.mobile-menu__link-icon img {
  max-width: 50px;
  max-height: 59px;
  width: auto;
  height: auto;
}

.mobile-menu__link-text {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -1.6px;
  color: #3f3f3f;
}

.mobile-menu__decor {
  position: absolute;
  bottom: -20px;
  right: 24px;
  width: 143px;
  height: auto;
  pointer-events: none;
}

.featured-post {
  padding: 0 0 32px 0;
}
.featured-post .container {
  position: relative;
}

.featured-post__decor {
  position: absolute;
  top: -124px;
  right: -20px;
  width: 144px;
  height: 132px;
  object-fit: contain;
  pointer-events: none;
}
@media (max-width: 768px) {
  .featured-post__decor {
    display: none;
  }
}

.featured-post__content {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
@media (max-width: 768px) {
  .featured-post__content {
    flex-direction: column;
    padding: 12px;
  }
}

.featured-post__image {
  flex: 0 0 auto;
  width: 450px;
}
@media (max-width: 768px) {
  .featured-post__image {
    width: 100%;
  }
}
.featured-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .featured-post__image img {
    aspect-ratio: 16/10;
    height: auto;
  }
}

.featured-post__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-post__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-post__header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.featured-post__title {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 568;
  font-size: 24px;
  line-height: normal;
  text-transform: uppercase;
  color: #3f3f3f;
  margin: 0;
}
@media (max-width: 768px) {
  .featured-post__title {
    font-size: 20px;
  }
}

.featured-post__summary {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 400;
  font-size: 17.21px;
  line-height: 25.816px;
  color: #3f3f3f;
  margin: 0;
}
@media (max-width: 768px) {
  .featured-post__summary {
    font-size: 15px;
    line-height: 1.5;
  }
}

.featured-post__date {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 400;
  font-size: 10.756px;
  line-height: 25.816px;
  color: #3f3f3f;
}
@media (max-width: 768px) {
  .featured-post__date {
    font-size: 11px;
  }
}

.featured-post__link {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  place-items: start;
  line-height: 0;
  margin-top: 20px;
  transition: opacity 0.2s;
}
.featured-post__link:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .featured-post__link {
    margin-top: 16px;
  }
}

.featured-post__link-icon {
  grid-area: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45.593px;
  height: 45.29px;
}
.featured-post__link-icon img {
  width: 35.75px;
  height: auto;
  transform: rotate(-19.846deg);
}

.featured-post__link-text {
  grid-area: 1/1;
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 496;
  font-size: 17.21px;
  line-height: 25.816px;
  letter-spacing: -0.6884px;
  color: #3f3f3f;
  margin-left: 50.56px;
  margin-top: 9.68px;
}

.section-divider__inner {
  display: flex;
  align-items: center;
}

.section-divider__line {
  flex: 1;
  height: 1px;
  background-color: #edeff3;
}

.section-divider__icon {
  flex-shrink: 0;
  width: 109px;
  padding-top: 2px;
}
.section-divider__icon img {
  width: 100%;
  height: auto;
}

.posts-grid {
  padding: 32px 0 96px 0;
}

.posts-grid__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.post-card {
  flex: 0 0 calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
@media (max-width: 768px) {
  .post-card {
    flex: 0 0 100%;
  }
}

.post-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.post-card__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-card__image img {
  width: 100%;
  aspect-ratio: 273.215/161.347;
  object-fit: cover;
}

.post-card__title {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 674;
  font-size: 15.059px;
  line-height: normal;
  text-transform: uppercase;
  color: #3f3f3f;
  margin: 0;
}

.post-card__summary {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 400;
  font-size: 13.983px;
  line-height: normal;
  color: #3f3f3f;
  margin: 0;
}

.post-card__link {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}
.post-card__link:hover {
  opacity: 0.7;
}

.post-card__link-icon {
  width: 27px;
  height: 20px;
}
.post-card__link-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__link-text {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 568;
  font-size: 13.983px;
  line-height: 25.816px;
  letter-spacing: -0.5593px;
  color: #3f3f3f;
}

.article {
  padding: 0 0 64px 0;
}
.article .container {
  position: relative;
}

.article__decor {
  position: absolute;
  top: -36px;
  right: 0;
  width: 74px;
  height: auto;
  pointer-events: none;
}
@media (max-width: 768px) {
  .article__decor {
    display: none;
  }
}

.article__content {
  max-width: 910px;
  margin: 0 auto;
}

.article__header {
  margin-bottom: 32px;
}

.article__title {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 568;
  font-size: 32px;
  line-height: normal;
  color: #3f3f3f;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .article__title {
    font-size: 24px;
  }
}

.article__date {
  display: block;
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #3f3f3f;
}

.article__cover {
  margin-bottom: 32px;
}
.article__cover img {
  width: 100%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.23);
}

.article__body {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.article__body h2, .article__body h3, .article__body h4 {
  font-weight: 568;
  margin-top: 2em;
  margin-bottom: 0.5em;
  color: #3f3f3f;
}
.article__body h2 {
  font-size: 24px;
}
.article__body h3 {
  font-size: 20px;
}
.article__body p {
  margin-bottom: 1.5em;
}
.article__body ul, .article__body ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}
.article__body ul {
  list-style-type: disc;
}
.article__body ol {
  list-style-type: decimal;
}
.article__body a {
  color: #0099ff;
  text-decoration: none;
}
.article__body a:hover {
  text-decoration: underline;
}
.article__body img {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.23);
  margin: 1.5em 0;
}
.article__body figure {
  margin: 1.5em 0;
}
.article__body figure img {
  margin: 0;
}
.article__body figure figcaption {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}
.article__body blockquote {
  border-left: 3px solid #b0dce5;
  padding-left: 1em;
  margin: 1.5em 0;
  color: #555;
  font-style: italic;
}
.article__body iframe {
  width: 100%;
  aspect-ratio: 16/9;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.23);
  margin: 1.5em 0;
}
.article__body .video {
  position: relative;
  margin: 1.5em 0;
}
.article__body .video img {
  width: 100%;
  margin: 0;
}

.article .section-divider {
  margin-top: 48px;
}

.layout {
  margin-bottom: 1.5em;
}
.layout:last-child {
  margin-bottom: 0;
}

.layout__columns {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .layout__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.layout__column {
  grid-column: span var(--column-span, 12);
}
@media (max-width: 768px) {
  .layout__column {
    grid-column: span 12;
  }
}

.block {
  margin-bottom: 1.5em;
}
.block:last-child {
  margin-bottom: 0;
}

.block--image figure,
.block--video figure {
  margin: 0;
}
.block--image img,
.block--image video,
.block--image iframe,
.block--video img,
.block--video video,
.block--video iframe {
  width: 100%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.23);
}
.block--image figcaption,
.block--video figcaption {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-size: 14px;
  color: #666;
  margin-top: 12px;
  text-align: center;
}

.block--video iframe {
  aspect-ratio: 16/9;
  border: none;
}
.block--video video {
  display: block;
}

.block--quote blockquote {
  border-left: 3px solid #b0dce5;
  padding-left: 1.5em;
  margin: 0;
  font-style: italic;
}
.block--quote blockquote p {
  margin-bottom: 0.5em;
}
.block--quote blockquote p:last-child {
  margin-bottom: 0;
}
.block--quote blockquote footer {
  margin-top: 1em;
  font-style: normal;
}
.block--quote blockquote footer cite {
  font-size: 14px;
  color: #666;
}
.block--quote blockquote footer cite::before {
  content: "— ";
}

.about {
  padding: 0 0 64px 0;
}
@media (max-width: 768px) {
  .about {
    padding: 0 0 64px 0;
  }
}

.about__content {
  position: relative;
  min-height: 450px;
  max-width: 825px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about__content {
    min-height: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

.about__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 348px;
  height: auto;
}
@media (max-width: 768px) {
  .about__image {
    position: relative;
    width: 280px;
  }
}

.about__text-wrapper {
  position: absolute;
  left: 231px;
  top: 128px;
}
@media (max-width: 768px) {
  .about__text-wrapper {
    position: relative;
    left: 0;
    top: 0;
  }
}

.about__text {
  width: 524px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .about__text {
    width: 90%;
    margin: -90px auto 0 auto;
  }
}
.about__text p {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -1.2px;
  color: #3f3f3f;
  margin: 0;
}
@media (max-width: 768px) {
  .about__text p {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.5px;
  }
}
.about__text p strong {
  font-weight: 674;
}

.about__flower {
  position: absolute;
  right: -50px;
  top: -80px;
  width: 102px;
  height: auto;
  transform: rotate(-15.189deg);
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 768px) {
  .about__flower {
    right: -10px;
    top: -190px;
  }
}

.contact {
  padding: 60px 0;
}

.contact__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact__title {
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact__message {
  font-size: 1.25rem;
  color: #666;
}

.blog {
  padding: 60px 0;
}

.blog__title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.site-footer {
  background-color: #b0dce5;
  margin-top: auto;
}

.site-footer__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px;
}

.site-footer__books {
  position: absolute;
  top: -73px;
  right: 64px;
  width: 227px;
  height: auto;
  transform: rotate(-5.63deg);
  pointer-events: none;
}
@media (max-width: 768px) {
  .site-footer__books {
    width: 116px;
    top: -44px;
    right: 32px;
  }
}

.site-footer__trowel {
  position: absolute;
  top: 14px;
  left: 40px;
  width: 22px;
  height: auto;
  transform: rotate(22.993deg);
  pointer-events: none;
}

.site-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 307px;
}

.site-footer__info-top {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.site-footer__title {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 810;
  font-size: 25.816px;
  line-height: normal;
  letter-spacing: -1.8071px;
  color: #3f3f3f;
  margin: 0;
}

.site-footer__summary {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 400;
  font-size: 11.832px;
  line-height: 18.286px;
  color: #3f3f3f;
  margin: 0;
}

.site-footer__copyright {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 400;
  font-size: 11.832px;
  line-height: 18.286px;
  color: #3f3f3f;
  margin: 0;
}

.site-footer__nav {
  width: 45px;
}
@media (max-width: 768px) {
  .site-footer__nav {
    display: none;
  }
}
.site-footer__nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 17px;
}
.site-footer__nav li {
  width: 100%;
  opacity: 0.66;
}
.site-footer__nav li:has(.is-active) {
  opacity: 1;
}
.site-footer__nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  transition: opacity 0.2s;
}
.site-footer__nav a:hover {
  opacity: 1;
}

.site-footer__nav-text {
  font-family: "New York", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif;
  font-weight: 400;
  font-size: 13.983px;
  line-height: 13.983px;
  letter-spacing: -0.6992px;
  color: #3f3f3f;
  text-align: center;
}

.site-footer__nav-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 7px;
  opacity: 0;
  transform: rotate(1.07deg);
  transition: opacity 0.2s;
}
.site-footer__nav-underline img {
  width: 100%;
  height: auto;
}
.is-active .site-footer__nav-underline {
  opacity: 1;
}

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