.content-1 {
  width: 100%;
  background: #ffffff;
}

.content-1 .features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
}

.content-1 .features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 240px;
  margin: 30px 0;
}

.content-1 .features__icon {
  display: block;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-position: center center;
}

.content-1 .features__icon--bread {
  background-image: url('../images/icons/icon-bread.svg');
  background-size: 74px auto;
}

.content-1 .features__icon--bulb {
  background-image: url('../images/icons/icon-bulb.svg');
  background-size: 80px auto;
}

.content-1 .features__icon--flag {
  background-image: url('../images/icons/icon-flag.svg');
  background-size: auto 70px;
}

.content-1 .features__title {
  margin: 0 0 16px;
  color: #613b21;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 107%;
}

.content-1 .features__desc {
  margin: 0;
  color: #613b21;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 115%;
}

.site-content-2 {
  background-image: url('../images/decor/site-content-2.png');
  background-image: image-set(
    url('../images/decor/site-content-2.webp') type('image/webp'),
    url('../images/decor/site-content-2.png') type('image/png')
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 5760 / 2070;
  position: relative;
}

.content-2__inner {
  position: absolute;
  left: 14.24%;
  top: 20%;
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.content-2__title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.47vw, 50px);
  line-height: 109%;
}

.content-2__title-line {
  display: block;
}

.content-2__title-regular {
  color: #ffffff;
  font-weight: 400;
}

.content-2__title-accent {
  color: #e0bd8e;
  font-weight: 400;
}

.content-2__lead {
  margin: clamp(12px, 1.5vw, 24px) 0 clamp(16px, 2vw, 32px);
  color: #ffffff;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(14px, 1.39vw, 20px);
  line-height: 121%;
  max-width: 28ch;
}

.content-2__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e0bd8e;
  border-radius: 10px;
  color: #613b21;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(12px, 1.04vw, 15px);
  text-decoration: none;
  padding: 14px 28px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.content-2__cta:hover {
  background: #f0cfa0;
  color: #4a2c18;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.content-2__cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.content-3 {
  width: 100%;
  background: #ffffff;
  padding: clamp(48px, 6vw, 96px) 0;
}

.content-3__title {
  margin: 0 auto clamp(32px, 4vw, 64px);
  max-width: 1100px;
  text-align: center;
  color: #613b21;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(24px, 3.13vw, 45px);
  line-height: 109%;
}

.content-3__title-accent {
  color: #cf8c58;
  font-weight: 700;
  background-image: url('../images/icons/underline.svg');
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 85% auto;
  padding-bottom: 0.2em;
}

.solutions {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.solutions__card {
  width: 334px;
  height: 440px;
  border-radius: 18px;
  overflow: hidden;
  background: #9e6941;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.solutions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.solutions__img-wrap {
  position: absolute;
  inset: 0;
}

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

.solutions__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(158, 105, 65, 0) 0%, rgba(158, 105, 65, 0) 35%, rgba(158, 105, 65, 0.55) 55%, rgba(158, 105, 65, 0.92) 75%, #9e6941 90%);
}

.solutions__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 32px 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1;
}

.solutions__heading {
  margin: 0;
  max-width: 16ch;
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 99%;
}

.solutions__desc {
  margin: 0;
  max-width: 26ch;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 121%;
}

.site-content-4 {
  background: #613b21 url('../images/decor/site-content-4.png') center / cover no-repeat;
  width: 100%;
  aspect-ratio: 5760 / 3059;
  padding: clamp(48px, 5vw, 80px) clamp(40px, 10vw, 160px) clamp(56px, 6vw, 96px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-4__header {
  max-width: 1120px;
  margin: 0 auto clamp(32px, 3.5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.content-4__title {
  margin: 0;
  color: #e0bd8e;
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 2.43vw, 35px);
  line-height: 109%;
  font-weight: 400;
}

.content-4__title-bold { font-weight: 700; }
.content-4__title-regular { font-weight: 400; }

.content-4__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e0bd8e;
  border-radius: 14px;
  color: #e0bd8e;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}

.content-4__cta:hover {
  background: #e0bd8e;
  color: #613b21;
}

.content-4__carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.content-4__viewport {
  overflow: hidden;
  padding: 16px 0 24px;
  margin: -16px 0 -24px;
}

.content-4__dots {
  margin: clamp(24px, 2.5vw, 36px) auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.content-4__dots .carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9e6941;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.content-4__dots .carousel__dot--active {
  background: #e0bd8e;
}

.content-4__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 43px;
  height: 43px;
  cursor: pointer;
  background: url('../images/icons/arrow-right.svg') no-repeat center / contain;
  border: 0;
  padding: 0;
  z-index: 2;
}

.content-4__nav--prev {
  left: clamp(-60px, -4vw, -50px);
  transform: translateY(-50%) scaleX(-1);
}

.content-4__nav--next {
  right: clamp(-60px, -4vw, -50px);
}

.products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(16px, 1.5vw, 24px);
  transition: transform 0.45s ease;
  will-change: transform;
}

.products__card {
  background: #ffe2bc;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  flex: 0 0 calc((100% - (clamp(16px, 1.5vw, 24px) * 3)) / 4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.products__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.products__img-wrap {
  width: 100%;
  aspect-ratio: 334 / 280;
  overflow: hidden;
}

.products__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products__body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px 48px;
  min-height: 60px;
}

.products__name {
  margin: 0;
  color: #613b21;
  text-align: center;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(17px, 1.32vw, 19px);
  line-height: 109%;
}

.content-5 {
  width: 100%;
  background: #ffffff;
  padding: clamp(56px, 6vw, 96px) 0;
}

.content-5__title {
  margin: 0 auto clamp(40px, 4.5vw, 72px);
  text-align: center;
  color: #613b21;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.13vw, 45px);
  line-height: 109%;
}

.content-5__title-accent {
  color: #cf8c58;
  font-weight: 700;
}

.content-5__carousel {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.content-5__viewport {
  overflow: hidden;
}

.testimonials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonials__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(20px, 2vw, 32px);
  flex: 0 0 calc((100% - (clamp(24px, 3vw, 48px) * 2)) / 3);
  box-sizing: border-box;
}

.testimonials__quote {
  margin: 0;
  color: #613b21;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 135%;
  max-width: 32ch;
}

.testimonials__author {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #cf8c58;
  font-family: "Fraunces", serif;
  line-height: 120%;
}

.testimonials__name {
  font-weight: 700;
  font-size: clamp(15px, 1.18vw, 17px);
}

.testimonials__role {
  font-weight: 400;
  font-size: clamp(14px, 1.04vw, 15px);
}

.testimonials__dots {
  margin: clamp(32px, 4vw, 56px) auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonials__dots .carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0bd8e;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.testimonials__dots .carousel__dot--active {
  background: #613b21;
}

.content-6 {
  width: 100%;
  background: #ffffff;
  padding: clamp(48px, 5vw, 80px) 0 clamp(56px, 6vw, 96px);
}

.content-6__header {
  max-width: 1120px;
  margin: 0 auto clamp(32px, 3.5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.content-6__title {
  margin: 0;
  color: #613b21;
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 2.43vw, 35px);
  line-height: 109%;
  font-weight: 400;
}

.content-6__title-accent {
  color: #cf8c58;
  font-weight: 700;
}

.content-6__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #613b21;
  border-radius: 14px;
  color: #613b21;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}

.content-6__cta:hover {
  background: #613b21;
  color: #e0bd8e;
}

.content-6__carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.content-6__viewport {
  overflow: hidden;
}

.content-6__dots {
  margin: clamp(24px, 2.5vw, 36px) auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.content-6__dots .carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0bd8e;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.content-6__dots .carousel__dot--active {
  background: #613b21;
}

.content-6__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 43px;
  height: 43px;
  cursor: pointer;
  background: url('../images/icons/arrow-right.svg') no-repeat center / contain;
  border: 0;
  padding: 0;
  z-index: 2;
  filter: invert(18%) sepia(22%) saturate(1736%) hue-rotate(347deg) brightness(92%) contrast(87%);
}

.content-6__nav--prev {
  left: clamp(-60px, -4vw, -50px);
  transform: translateY(-50%) scaleX(-1);
}

.content-6__nav--next {
  right: clamp(-60px, -4vw, -50px);
}

.posts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(16px, 1.5vw, 24px);
  transition: transform 0.45s ease;
  will-change: transform;
}

.posts__card {
  background: #ffe2bc;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - (clamp(16px, 1.5vw, 24px) * 2)) / 3);
  box-sizing: border-box;
}

.posts__img-wrap {
  width: 100%;
  aspect-ratio: 360 / 260;
  overflow: hidden;
}

.posts__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.posts__body {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.posts__date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cf8c58;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 14px;
}

.posts__date-icon {
  width: 20px;
  height: 20px;
  background: url('../images/icons/icon-calendar.svg') no-repeat center / contain;
  display: inline-block;
}

.posts__title {
  margin: 0;
  color: #613b21;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(20px, 1.74vw, 25px);
  line-height: 109%;
}

.posts__excerpt {
  margin: 0;
  color: #613b21;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
}

.posts__more {
  align-self: flex-start;
  margin-top: 8px;
  background: #613b21;
  color: #ffffff;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.posts__more:hover {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .content-1 .features {
    gap: 32px;
    padding: 40px 20px;
  }

  .site-content-2 {
    aspect-ratio: auto;
    padding: 56px 20px;
  }
  .content-2__inner {
    position: static;
    width: auto;
    max-width: 560px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }
  .content-2__lead { max-width: none; }

  .content-3 { padding: 56px 20px; }
  .content-3__title-accent { background-size: 100% auto; }
  .solutions { gap: 20px; }
  .solutions__card { width: 100%; max-width: 360px; height: 380px; }
  .solutions__heading { max-width: none; }

  .site-content-4 {
    aspect-ratio: auto;
    padding: 56px 20px;
    background: #613b21;
  }
  .content-4__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 32px;
  }
  .content-4__carousel {
    padding: 0 40px;
    max-width: 500px;
  }
  .content-4__nav--prev { left: 0; }
  .content-4__nav--next { right: 0; }
  .products__card { flex: 0 0 100%; }

  .content-5 { padding: 56px 20px; }
  .content-5__carousel { max-width: 480px; }
  .testimonials { gap: 40px; }
  .testimonials__item { flex: 0 0 100%; }
  .testimonials__quote { max-width: none; }

  .content-6 { padding: 56px 20px; }
  .content-6__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 32px;
  }
  .content-6__carousel {
    padding: 0 40px;
    max-width: 500px;
  }
  .content-6__nav--prev { left: 0; }
  .content-6__nav--next { right: 0; }
  .posts__card { flex: 0 0 100%; }
}

@media (max-width: 560px) {
  .content-2__title { font-size: 30px; }
  .content-2__cta { white-space: normal; text-align: center; }
  .content-3__title,
  .content-5__title,
  .content-4__title,
  .content-6__title { font-size: 26px; }
  .content-4__nav,
  .content-6__nav { width: 32px; height: 32px; }
  .content-4__carousel,
  .content-6__carousel { padding: 0 36px; max-width: 360px; }
  .content-5__carousel { max-width: 360px; }
}
