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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  background-color: #f9f8f3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .section {
    padding: 4rem 0;
  }
}
.section--alt {
  background-color: #f0ede4;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section__label {
  display: block;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c5a059;
  margin-bottom: 1rem;
}

.section__title {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2c4a44;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}
.section__title--left {
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background-color: #2c4a44;
  color: #ffffff;
  border-color: #2c4a44;
}
.btn--primary:hover {
  background-color: #1e3530;
  border-color: #1e3530;
  box-shadow: 0 4px 20px rgba(44, 74, 68, 0.1);
}
.btn--outline {
  background-color: transparent;
  color: #2c4a44;
  border-color: #2c4a44;
}
.btn--outline:hover {
  background-color: #2c4a44;
  color: #ffffff;
}
.btn--lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}
@media (max-width: 991px) {
  .btn--phone {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e8e4da;
  transition: box-shadow 0.3s ease;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.header.scrolled {
  box-shadow: 0 2px 8px rgba(44, 74, 68, 0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.logo__icon {
  width: 40px;
  height: 40px;
  color: #2c4a44;
  flex-shrink: 0;
}
.logo__text {
  display: flex;
  flex-direction: column;
}
.logo__name {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c4a44;
  line-height: 1.2;
}
.logo__tagline {
  font-size: 0.75rem;
  color: #888888;
  line-height: 1.3;
}
@media (max-width: 575px) {
  .logo__tagline {
    display: none;
  }
}
.logo--light .logo__icon,
.logo--light .logo__name {
  color: #ffffff;
}
.logo--light .logo__tagline {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
  .nav {
    position: fixed;
    inset: 0;
    top: 80px;
    z-index: 1;
    background: #ffffff;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav.open {
    transform: translateX(0);
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 991px) {
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c5a059;
  transition: width 0.3s ease;
}
.nav__link:hover, .nav__link--active {
  color: #2c4a44;
}
.nav__link:hover::after, .nav__link--active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  z-index: 1001;
}
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #2c4a44;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding-top: calc(80px + 4rem);
  padding-bottom: 6rem;
  background: linear-gradient(135deg, #f9f8f3 0%, #f0ede4 100%);
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    padding-top: calc(80px + 2rem);
    padding-bottom: 4rem;
  }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 991px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.hero__title {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2c4a44;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}
.hero__text {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.hero__feature strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2c4a44;
  margin-bottom: 2px;
}
.hero__feature span {
  font-size: 0.875rem;
  color: #888888;
}
.hero__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(44, 74, 68, 0.08);
  color: #2c4a44;
  flex-shrink: 0;
}
.hero__media {
  position: relative;
}
@media (max-width: 991px) {
  .hero__media {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
}
.hero__image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 5/6;
  box-shadow: 0 8px 40px rgba(44, 74, 68, 0.12);
}
.hero__card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44, 74, 68, 0.1);
  max-width: 260px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.hero__card svg {
  color: #c5a059;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero__card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #666666;
}
.hero__card p strong {
  color: #2c4a44;
}
@media (max-width: 991px) {
  .hero__card {
    left: 1rem;
    bottom: 1rem;
    max-width: 240px;
  }
}
@media (max-width: 575px) {
  .hero__card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: -2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    max-width: none;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 991px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__cta {
  text-align: center;
  margin-top: 4rem;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 74, 68, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 2rem;
}
.service-card:hover {
  box-shadow: 0 4px 20px rgba(44, 74, 68, 0.1);
  transform: translateY(-2px);
}
.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: rgba(197, 160, 89, 0.12);
  color: #c5a059;
  margin-bottom: 1.5rem;
}
.service-card__title {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2c4a44;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.service-card__text {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.8;
}

.benefits__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 991px) {
  .benefits__inner {
    grid-template-columns: 1fr;
  }
}
.benefits__intro {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.benefits__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
}
.benefits__list li svg {
  color: #2c4a44;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 991px) {
  .benefits__media {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
  }
}
.benefits__image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 7/8;
  box-shadow: 0 8px 40px rgba(44, 74, 68, 0.12);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 991px) {
  .about__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .about__inner {
    grid-template-columns: 1fr;
  }
}
.about__photo img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 5/6;
  box-shadow: 0 4px 20px rgba(44, 74, 68, 0.1);
}
@media (max-width: 767px) {
  .about__photo {
    max-width: 400px;
    margin: 0 auto;
  }
}
.about__text {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about__text strong {
  color: #2c4a44;
}
.about__facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .about__facts {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 575px) {
  .about__facts {
    grid-template-columns: 1fr;
  }
}

.fact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 74, 68, 0.06);
}
.fact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(44, 74, 68, 0.08);
  color: #2c4a44;
  flex-shrink: 0;
}
.fact strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2c4a44;
  margin-bottom: 2px;
}
.fact span {
  font-size: 0.875rem;
  color: #888888;
}

.testimonials__slider {
  overflow: hidden;
  margin: 0 -1.5rem;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .testimonials__slider {
    overflow: visible;
  }
}
.testimonials__track {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s ease;
}
@media (min-width: 768px) {
  .testimonials__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    transform: none !important;
  }
}
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .testimonials__dots {
    display: none;
  }
}
.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #e8e4da;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}
.testimonials__dot--active {
  background: #2c4a44;
  transform: scale(1.2);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 74, 68, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  flex: 0 0 calc(100% - 2rem);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(44, 74, 68, 0.1);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .testimonial-card {
    flex: unset;
  }
}
.testimonial-card:hover {
  transform: none;
}
.testimonial-card__quote {
  color: rgba(44, 74, 68, 0.2);
  margin-bottom: 1rem;
}
.testimonial-card__text {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2c4a44;
}

.contact-cta__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: #f0ede4;
  border-radius: 24px;
  padding: 3rem 4rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .contact-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
}
.contact-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 9999px;
  background: #2c4a44;
  color: #ffffff;
  flex-shrink: 0;
}
.contact-cta__text {
  flex: 1;
}
.contact-cta__text p {
  font-size: 1rem;
  color: #666666;
  margin-top: 0.5rem;
}
.contact-cta__title {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2c4a44;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}
.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .contact-cta__actions {
    justify-content: center;
  }
}

.footer {
  background: #2c4a44;
  color: rgba(255, 255, 255, 0.75);
  padding: 2rem 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.footer__brand {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.footer__brand:hover {
  opacity: 0.85;
}
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}
.footer__contact a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}
.footer__contact a:hover {
  color: #ffffff;
}
.footer__contact span[aria-hidden] {
  opacity: 0.4;
}
.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.5rem;
}

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