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

body {
  font-family: "Montserrat", sans-serif;
}

/* HERO */

.hero-section {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 5rem 8%;
  background: #dde5d8;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 65% center;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(221, 229, 216, 0.96) 0%,
    rgba(221, 229, 216, 0.82) 32%,
    rgba(221, 229, 216, 0.28) 62%,
    rgba(221, 229, 216, 0.03) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  width: 100%;
  transform: translateY(-40px);
}

.hero__name {
  width: 100%;
  margin: 0 0 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo {
  display: block;
  width: 45%;
  height: auto;
  object-fit: contain;
}

.hero {
  position: relative;
  width: 100%;
  text-align: left;
  background: rgba(238, 240, 234, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  padding: clamp(2.25rem, 5vw, 3.5rem);
  box-shadow: 0 18px 55px rgba(44, 48, 41, 0.12);
  backdrop-filter: blur(6px);
}

.hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a8060;
  margin-bottom: 1.5rem;
}

.hero__divider {
  width: 48px;
  height: 1px;
  background: #7a9e7e;
  margin: 0 0 1.5rem;
}

.hero__tagline {
  font-size: clamp(0.98rem, 2.5vw, 1.12rem);
  font-weight: 300;
  color: #4a4a40;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 2.5rem;
}

.hero__tagline em {
  color: #2c3029;
  font-style: normal;
  font-weight: 600;
}

.hero__cta {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1px solid #5a8060;
  background: #5a8060;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hero__cta:hover {
  background: #4a6e50;
  border-color: #4a6e50;
  transform: translateY(-1px);
}

.hero__meta {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: #6b6b60;
  letter-spacing: 0.08em;
}

/* СЕКЦІЇ */

.section {
  padding: 5rem 1.5rem;
}

.section--light {
  background: #dde5d8;
  box-shadow: inset 80px 0 60px -40px rgba(0, 0, 0, 0.06),
    inset -80px 0 60px -40px rgba(0, 0, 0, 0.06);
}

.section--soft {
  background: #ced9c8;
  box-shadow: inset 80px 0 60px -40px rgba(0, 0, 0, 0.06),
    inset -80px 0 60px -40px rgba(0, 0, 0, 0.06);
}

.inner {
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a8060;
  margin-bottom: 0.75rem;
}

.title {
  font-family: "Caveat", cursive;
  font-size: clamp(2.45rem, 5.8vw, 3.8rem);
  font-weight: 600;
  color: #2c3029;
  line-height: 1.05;
}

.divider {
  width: 48px;
  height: 1px;
  background: #7a9e7e;
  margin: 1.5rem 0;
}

/* ПРО МЕНЕ */

.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.8fr);
  gap: 2.5rem;
  align-items: stretch;
}

.about-side {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.facts {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 1rem auto 0;
  padding-top: 0;
  text-align: left;
}

.about-photo {
  margin-top: 0;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: #ced9c8;
  box-shadow: 0 14px 34px rgba(44, 48, 41, 0.14);
}

.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-photo--mobile {
  display: none;
}

.fact__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9a8a;
  margin-bottom: 0.1rem;
}

.fact__value {
  font-size: 0.9rem;
  color: #3c3c32;
}

.about-text {
  font-size: 1rem;
  font-weight: 300;
  color: #4a4a40;
  line-height: 1.85;
}

.about-text p + p {
  margin-top: 1.2rem;
}

.about-text strong {
  font-weight: 600;
  color: #2c3029;
}

.about-quote {
  margin-top: 1.5rem;
  max-width: 100%;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid #7a9e7e;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.about-quote p {
  font-family: "Caveat", cursive;
  font-size: 1.15rem;
  color: #3c3c32;
  line-height: 1.6;
  font-style: italic;
}

.about-quote--mobile,
.cooperation-mobile-photo-wrap,
.cooperation-photo--mobile,
.cooperation-note--mobile {
  display: none;
}

.about-quote--desktop,
.cooperation-photo--desktop,
.cooperation-note--desktop {
  display: block;
}

.about-quote--desktop p,
.cooperation-note--desktop p {
  font-size: 2.3rem;
  line-height: 1.25;
}

/* ЦИТАТА */

.quote-section {
  padding: 4rem 2rem;
  background: #ced9c8;
  text-align: center;
  box-shadow: inset 80px 0 60px -40px rgba(0, 0, 0, 0.06),
    inset -80px 0 60px -40px rgba(0, 0, 0, 0.06);
}

.quote-section p {
  font-family: "Caveat", cursive;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #2c3029;
  font-style: italic;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

.quote-section span {
  display: block;
  width: 48px;
  height: 1px;
  background: #7a9e7e;
  margin: 1.5rem auto 0;
}

/* ПОСЛУГИ */

.grid-top,
.grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.grid-top {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

a.card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #eef0ea;
  border: 1px solid #c8d4c0;
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

a.card:hover {
  border-color: #7a9e7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.card__icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  display: block;
}

.card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c3029;
  margin-bottom: 0.4rem;
}

.card__desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: #6b6b60;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card__desc--last {
  margin-bottom: 0;
}

.card__btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: #5a8060;
  border: 1px solid #5a8060;
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

a.card:hover .card__btn {
  background: #4a6e50;
  border-color: #4a6e50;
  color: #ffffff;
}

.portfolio-summary {
  margin-top: 2rem;
}

.portfolio-summary__line {
  display: none;
}

/* СПІВПРАЦЯ З ФОТО */

.cooperation-section .inner {
  max-width: 900px;
}

.cooperation-heading {
  margin-bottom: 1.5rem;
}

.cooperation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 36%);
  gap: 2.75rem;
  align-items: stretch;
}

.cooperation-content {
  position: relative;
  z-index: 2;
}

.cooperation-content > .eyebrow,
.cooperation-content > .title,
.cooperation-content > .divider {
  display: none;
}

.cooperation-content .about-text {
  max-width: 100%;
}

.cooperation-note {
  width: 100%;
}

.cooperation-photo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  justify-self: end;
  transform: none;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #ced9c8;
  box-shadow: 0 14px 34px rgba(44, 48, 41, 0.14);
}

.cooperation-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* ІНТЕРЕСИ */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tag {
  padding: 0.6rem 1.1rem;
  background: #eef0ea;
  border: 1px solid #c8d4c0;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #3c3c32;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}

.tag:hover {
  background: #7a9e7e;
  border-color: #7a9e7e;
  color: #ffffff;
}

/* КОНТАКТ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-heading {
  margin-bottom: 1.25rem;
}

.contact-heading .title {
  font-size: clamp(1.225rem, 2.9vw, 1.9rem);
}

.contact-grid > div:first-child > .eyebrow,
.contact-grid > div:first-child > .title,
.contact-grid > div:first-child > .divider {
  display: none;
}

.contact-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: #5c5c52;
  line-height: 1.8;
  margin-top: 0.5rem;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: start;
  padding-top: 0.5rem;
}

.cta-primary {
  display: block;
  text-align: center;
  padding: 1rem 2rem;
  background: #5a8060;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.cta-primary:hover {
  background: #4a6e50;
}

.contact-note {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 300;
  color: #6b6b60;
}

.langs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.lang {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a9e7e;
  padding: 0.3rem 0.7rem;
  border: 1px solid #c8d4c0;
  border-radius: 8px;
}

/* ФУТЕР / КОНТАКТ ІЗ ФОНОВИМ ЗОБРАЖЕННЯМ */

.footer-section {
  position: relative;
  min-height: clamp(520px, 66vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 8%;
  background: #1f331f;
}

.footer__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.footer-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(31, 51, 31, 0.5) 0%,
    rgba(221, 229, 216, 0.2) 45%,
    rgba(31, 51, 31, 0.5) 100%
  );
  pointer-events: none;
}

.footer-card {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  background: rgba(238, 240, 234, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 18px 55px rgba(20, 35, 20, 0.22);
  backdrop-filter: blur(7px);
}

.footer-card .contact-grid {
  gap: 3rem;
}

.footer-card .contact-text,
.footer-card .contact-note {
  color: #3f443b;
}

.footer-card .lang {
  background: rgba(238, 240, 234, 0.5);
}

/* АДАПТИВ */

@media (max-width: 700px) {
  .section .inner,
  .about-grid,
  .about-side,
  .about-main,
  .about-text,
  .about-quote,
  .grid-top,
  .grid-bottom,
  .cooperation-grid,
  .cooperation-content,
  .contact-grid,
  .contact-right,
  .tags {
    text-align: center;
    justify-items: center;
    align-items: center;
  }

  .about-text p,
  .contact-text {
    text-align: center;
  }

  .about-grid,
  .about-side,
  .about-main {
    margin-left: auto;
    margin-right: auto;
  }

  .grid-top,
  .grid-bottom,
  .about-grid,
  .contact-grid,
  .cooperation-grid {
    grid-template-columns: 1fr;
  }

  .grid-top,
  .grid-bottom {
    gap: 1rem;
  }

  .about-grid,
  .contact-grid {
    gap: 2.5rem;
  }

  .about-side {
    display: block;
    width: 100%;
  }

  .facts {
    display: block;
    width: 100%;
    max-width: none;
    margin: 1rem 0 0;
    padding-top: 0;
    text-align: left;
  }

  .facts > div {
    display: flex;
    gap: 0.35rem;
    justify-content: flex-start;
    align-items: baseline;
  }

  .facts > div + div {
    margin-top: 0.35rem;
  }

  .fact__label,
  .fact__value {
    display: inline;
    margin: 0;
    text-align: left;
  }

  .fact__label {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #3c3c32;
  }

  .fact__label::after {
    content: " -";
  }

  .fact__value {
    font-size: 0.9rem;
    color: #3c3c32;
  }

  .about-side > .about-photo {
    display: none;
  }

  .about-photo {
    max-width: 260px;
    margin-top: 0;
  }

  .about-photo--mobile {
    display: block;
    width: min(100%, 320px);
    margin: 28px auto 22px;
  }

  .about-photo--mobile img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .about-love {
    max-width: 100%;
    margin-top: 1.5rem;
  }

  .about-quote--mobile {
    display: block;
  }

  .about-quote--desktop {
    display: none;
  }

  .section {
    padding: 3.5rem 1rem;
  }

  .hero-section {
    min-height: 620px;
    align-items: flex-end;
    padding: 1.2rem 1rem;
  }

  .hero__image img {
    object-position: center center;
  }

  .hero-section::after {
    background: linear-gradient(
      180deg,
      rgba(221, 229, 216, 0.04) 0%,
      rgba(221, 229, 216, 0.28) 42%,
      rgba(221, 229, 216, 0.96) 100%
    );
  }

.hero {
    --hero-padding: 1rem;
    max-width: none;
    width: calc(100vw - 2rem);
    min-height: 300px;
    margin: 0 auto;
    padding: 2rem 1.65rem;
    text-align: left;
    border-radius: 18px;
    background: rgba(238, 240, 234, 0.66);
    backdrop-filter: blur(5px);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-content {
    transform: translateY(30px);
  }

  .hero__label {
    font-size: 0.25rem;
    line-height: 1.25;
    letter-spacing: 0.14em;
    margin-bottom: 0.45rem;
  }

  .hero__name {
    font-size: 3.35rem;
    line-height: 0.92;
    margin-bottom: 1.1rem;
  }

  .hero__name--logo {
    min-height: 120px;
    margin: 0 calc(var(--hero-padding) * -1) 0.45rem;
  }

  .hero__logo {
    max-width: 560px;
    height: auto;
    filter:
      drop-shadow(0 0 14px rgba(255, 255, 255, 0.95))
      drop-shadow(0 0 30px rgba(255, 255, 255, 0.70))
      drop-shadow(0 0 46px rgba(221, 229, 216, 0.85));
  }

  .hero__divider {
    width: 38px;
    margin: 0 0 0.55rem;
  }

  .hero__tagline {
    font-size: 0.78rem;
    line-height: 1.55;
    margin-bottom: 0.9rem;
  }

  .hero__cta {
    width: 100%;
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .hero__meta {
    margin-top: 0.4rem;
    font-size: 0.6rem;
  }

  .card__btn {
    align-self: center;
    background: #5a8060;
    border-color: #5a8060;
    color: #ffffff;
    text-align: center;
  }

  a.card:hover .card__btn {
    background: #4a6e50;
    border-color: #4a6e50;
    color: #ffffff;
  }

  .tags {
    justify-content: center;
    gap: 0.45rem;
  }

  .tag {
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .cooperation-grid {
    display: grid;
    gap: 2rem;
  }

  .cooperation-content {
    display: contents;
  }

  .cooperation-content .about-text {
    grid-row: 1;
    max-width: 100%;
  }

  .cooperation-note--desktop,
  .cooperation-photo--desktop {
    display: none;
  }

  .cooperation-mobile-photo-wrap {
    display: block;
    position: relative;
    width: calc(100% + 2rem);
    margin: 2rem -1rem 1.6rem;
  }

  .cooperation-mobile-photo-wrap .cooperation-photo--mobile {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    margin: 0;
    transform: none;
    border-radius: 8px;
    overflow: hidden;
    background: #ced9c8;
    box-shadow: 0 14px 34px rgba(44, 48, 41, 0.14);
  }

  .cooperation-mobile-photo-wrap .cooperation-photo--mobile img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center center;
  }

  .cooperation-mobile-photo-wrap .cooperation-note--mobile {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    transform: translateY(-50%);
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.8rem 0.9rem;
    border-left: 0;
    border-radius: 8px;
    background: rgba(90, 128, 96, 0.72);
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 32px rgba(44, 48, 41, 0.18);
    text-align: center;
    z-index: 3;
  }

  .cooperation-mobile-photo-wrap .cooperation-note--mobile p {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.05;
    color: #ffffff;
  }

  .contact-heading {
    text-align: center;
  }

  .contact-heading .title {
    font-size: clamp(1.8rem, 8vw, 3.1rem);
  }

  .contact-heading .divider {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-section {
    min-height: 640px;
    align-items: flex-end;
    padding: 3rem 1rem;
  }

  .footer__image img {
    object-position: center center;
  }

  .footer-section::after {
    background: linear-gradient(
      180deg,
      rgba(31, 51, 31, 0.1) 0%,
      rgba(31, 51, 31, 0.24) 42%,
      rgba(31, 51, 31, 0.62) 100%
    );
  }

  .footer-card {
    padding: 1.35rem 1.25rem;
    border-radius: 8px;
    background: rgba(238, 240, 234, 0.72);
    backdrop-filter: blur(6px);
  }

  .footer-card .contact-grid {
    gap: 1.5rem;
  }

  .footer-card .cta-primary {
    padding: 0.8rem 1.2rem;
    font-size: 0.78rem;
  }
}

/* ДОДАТКОВЕ УЩІЛЬНЕННЯ HERO ДЛЯ ВУЗЬКИХ ЕКРАНІВ */

@media (max-width: 420px) {
  .hero-section {
    min-height: 620px;
    padding: 1rem 0.85rem;
  }

  .hero {
    --hero-padding: 0.95rem;
    max-width: none;
    width: calc(100vw - 1.7rem);
    min-height: 300px;
    padding: 1.75rem 1.45rem;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-content {
    transform: translateY(40px);
  }

  .hero__name {
    margin-bottom: 1rem;
  }

  .hero__name--logo {
    min-height: 115px;
    margin-bottom: 0.8rem;
  }

  .hero__logo {
    width: clamp(150px, 50vw, 180px);
    filter:
      drop-shadow(0 0 14px rgba(255, 255, 255, 0.95))
      drop-shadow(0 0 30px rgba(255, 255, 255, 0.70))
      drop-shadow(0 0 46px rgba(221, 229, 216, 0.85));
  }

  .hero__label {
    font-size: 0.56rem;
    margin-bottom: 0.4rem;
  }

  .hero__tagline {
    font-size: 0.76rem;
    line-height: 1.3;
    margin-bottom: 0.7rem;
  }

  .hero__cta {
    padding: 0.52rem 1rem;
    font-size: 0.64rem;
  }

  .hero__meta {
    margin-top: 0.5rem;
    font-size: 0.58rem;
  }

  .footer-section {
    min-height: 600px;
    padding: 2.4rem 0.85rem;
  }

  .footer-card {
    padding: 1.1rem 1rem;
  }

}

@media (max-width: 700px) {
  .hero-section::after {
    background: linear-gradient(
      180deg,
      rgba(221, 229, 216, 0.16) 0%,
      rgba(221, 229, 216, 0.5) 48%,
      rgba(221, 229, 216, 0.96) 100%
    );
  }
}

@media (max-width: 700px) {
  .hero {
    max-width: none;
    width: calc(100vw - 2rem);
    min-height: 300px;
    padding: 2rem 1.65rem;
    text-align: left;
    border-radius: 18px;
    background: rgba(238, 240, 234, 0.66);
    backdrop-filter: blur(5px);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.35rem;
  }

  .hero__label,
  .hero__divider,
  .hero__tagline,
  .hero__cta,
  .hero__meta {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero__label {
    font-size: 0.62rem;
    line-height: 1.5;
    letter-spacing: 0.16em;
  }

  .hero__divider {
    width: 48px;
  }

  .hero__tagline {
    font-size: 0.8rem;
    line-height: 1.75;
  }

  .hero__cta {
    width: 100%;
    text-align: center;
    padding: 0.68rem 1rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .hero__meta {
    font-size: 0.62rem;
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .hero__logo {
    width: min(92vw, 380px);
    max-width: none;
    height: auto;
  }

  .hero__name--logo {
    margin-left: 0;
    margin-right: 0;
  }
}

.about-wide {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.about-wide.about-quote {
  margin-top: 2rem;
}

.about-love-wrap {
  margin-top: 1.2rem;
}

.about-love-wrap .about-love {
  margin: 0;
  max-width: none;
}
