@charset "UTF-8";
@font-face {
  font-family: "Playfair Display";
  src: url("../../assets/fonts/Playfair_Display/static/PlayfairDisplay-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display Medium";
  src: url("../../assets/fonts/Playfair_Display/static/PlayfairDisplay-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display SemiBold";
  src: url("../../assets/fonts/Playfair_Display/static/PlayfairDisplay-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display Bold";
  src: url("../../assets/fonts/Playfair_Display/static/PlayfairDisplay-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "PT Sans";
  src: url("../../assets/fonts/PT_Sans/PTSans-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "PT Sans Bold";
  src: url("../../assets/fonts/PT_Sans/PTSans-Bold.ttf") format("truetype");
  font-weight: 600;
}
* {
  box-sizing: border-box;
}

body {
  font-family: "PT Sans", sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background-color: #e4e7e4;
}

input,
textarea,
button {
  font-family: "PT Sans", sans-serif;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
}

h3 {
  text-align: center;
}

h2 {
  font-size: 45px;
  letter-spacing: 0.05em;
  text-align: center;
}

.logo__icon {
  height: 32px;
  width: auto;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1002;
}

.menu-overlay.active {
  display: block;
}

.button {
  background-color: #6B8E6B;
  border: none;
  padding: 0.8rem 1.2rem;
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem 3rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

header {
  background: #FFFFFF;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s;
}
header .logo__icon {
  mix-blend-mode: multiply;
  height: 2.5rem;
  width: auto;
  gap: 0.5rem;
}
@media (min-width: 48rem) {
  header .logo__icon {
    height: 3rem;
  }
}
@media (min-width: 68.75rem) {
  header .logo__icon {
    height: 3.5rem;
  }
}
@media (min-width: 48rem) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 68.75rem) {
  header {
    padding: 0.8rem 3rem;
  }
}

header.menu-open {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__logo a {
  box-shadow: none !important;
  background: none !important;
  border: none !important;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.menu__toggle {
  font-size: 1.5rem;
  cursor: pointer;
}
@media (min-width: 48rem) {
  .menu__toggle {
    display: none;
  }
}

.header__nav {
  display: none;
}
@media (min-width: 48rem) {
  .header__nav {
    display: flex !important;
    align-items: center;
  }
}
@media (min-width: 48rem) {
  .header__nav .nav-links {
    display: flex;
  }
}
@media (min-width: 48rem) {
  .header__nav a {
    display: block;
    text-decoration: none;
    color: rgba(57, 65, 57, 0.8274509804);
    padding: 0 1rem;
    font-size: 14px;
  }
}
@media (min-width: 68.75rem) {
  .header__nav a {
    font-size: 16px;
  }
}
.header__nav a:hover {
  color: #4a5e42;
  font-weight: bold;
}

.menu-header__container {
  background-color: #FFFFFF;
  padding: 0;
  margin: 0;
}

.menu-header {
  background-color: #FFFFFF;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s;
  top: 0;
  left: 0;
  right: 0;
}
.menu-header .logo__icon {
  mix-blend-mode: multiply;
  height: 2.5rem;
  width: auto;
  gap: 0.5rem;
}
.menu-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  padding-right: 0.5rem;
}

.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #e9ebe6;
  transition: right 0.3s ease;
  z-index: 1003;
  box-shadow: -2px 0 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 0;
}
@media (min-width: 48rem) {
  .menu {
    display: none;
  }
}
.menu .top-section {
  flex-grow: 1;
  padding: 1rem 1.5rem;
}
@media (min-width: 48rem) {
  .menu .top-section {
    padding: 0;
    display: flex;
    gap: 2rem;
  }
}
.menu .top-section a {
  font-size: 1.125rem;
  line-height: 2rem;
}
.menu a {
  display: block;
  text-decoration: none;
  color: #464647;
  font-weight: normal;
}
@media (min-width: 48rem) {
  .menu a {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.menu .bottom-section {
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  color: #464647;
}
@media (min-width: 48rem) {
  .menu .bottom-section {
    display: none;
  }
}
.menu .bottom-section .button {
  width: 100%;
  text-align: center;
  background-color: #6B8E6B;
  border: none;
  padding: 0.8rem 1.2rem;
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem 3rem;
  margin-top: 1rem;
}
.menu .bottom-section .phone__icon,
.menu .bottom-section .email__icon {
  height: 1rem;
}
.menu .bottom-section .contact-phone,
.menu .bottom-section .contact-email {
  font-size: 14px;
}

.menu.active {
  right: 0;
}

.phone__icon,
.email__icon,
.location__icon {
  height: 0.8rem;
  vertical-align: middle;
  margin-right: 8px;
}

.header .header__nav .phone__icon {
  height: 1rem;
}
.header .header__nav .phone__icon:hover {
  text-decoration: none;
  opacity: 0.9;
}

.button {
  background-color: #6B8E6B;
  border: none;
  padding: 0.8rem 1.2rem;
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.9rem 3rem;
}
@media (min-width: 48rem) {
  .button {
    font-family: "PT Sans Bold";
    font-size: 1rem;
    padding: 1rem 3rem;
  }
}

.services-section h3,
.contact-section h3,
.faq-section-wrapper h3 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-family: "Playfair Display Bold";
}

strong {
  font-family: "PT Sans Bold";
}

.hero-description-section {
  position: relative;
  padding: 7rem 1.5rem 7rem 1.5rem;
  color: #fff;
  text-align: left;
  background-image: url("../assets/images/hero.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (min-width: 48rem) {
  .hero-description-section {
    padding: 9rem 1.5rem 7rem 3rem;
  }
}
@media (min-width: 68.75rem) {
  .hero-description-section {
    padding: 9rem 1.5rem 4.5rem 3rem;
  }
}
@media (min-width: 80rem) {
  .hero-description-section {
    background-attachment: fixed;
  }
}
.hero-description-section h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-family: "Playfair Display SemiBold";
}
@media (min-width: 48rem) {
  .hero-description-section h1 {
    max-width: 30rem;
    font-size: 3.4rem;
  }
}
@media (min-width: 68.75rem) {
  .hero-description-section h1 {
    font-family: "Playfair Display Bold";
    max-width: 35rem;
    font-size: 4rem;
  }
}
@media (min-width: 80rem) {
  .hero-description-section h1 {
    padding-top: 6rem;
    font-size: 5rem;
    max-width: 50rem;
  }
}
@media (min-width: 48rem) {
  .hero-description-section .button {
    margin-bottom: 1rem;
  }
}
@media (min-width: 80rem) {
  .hero-description-section .button {
    margin-bottom: 5.5rem;
  }
}
.hero-description-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
@media (min-width: 48rem) {
  .hero-description-section p {
    max-width: 33rem;
  }
}
@media (min-width: 68.75rem) {
  .hero-description-section p {
    font-size: 1.5rem;
    max-width: 43rem;
  }
}
@media (min-width: 80rem) {
  .hero-description-section p {
    font-size: 2rem;
    max-width: 50rem;
    margin-bottom: 3rem;
  }
}
.hero-description-section h1, .hero-description-section h2, .hero-description-section p, .hero-description-section a {
  position: relative;
  z-index: 1;
}

.hero-description-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.about-hero {
  position: relative;
  padding: 9rem 1.5rem 6rem 1.5rem;
  color: #fff;
  text-align: left;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .about-hero {
    padding: 9rem 1.5rem 3rem 3rem;
  }
}
@media (min-width: 80rem) {
  .about-hero {
    background-attachment: fixed;
  }
}
.about-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  filter: brightness(0.82);
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .about-hero__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.88fr);
    align-items: center;
    gap: 1.5rem;
  }
}
.about-hero__content-title {
  margin-bottom: 0;
}
@media (min-width: 68.75rem) {
  .about-hero__content-title {
    padding-top: 6rem;
  }
}
@media (min-width: 80rem) {
  .about-hero__content-title {
    padding-top: 8rem;
  }
}
.about-hero__content-subtitle {
  padding-bottom: 0.86rem;
  margin-top: 0;
}
@media (min-width: 48rem) {
  .about-hero__content-subtitle {
    padding-bottom: 3rem;
  }
}
@media (min-width: 68.75rem) {
  .about-hero__content-subtitle {
    padding-bottom: 12.5rem;
  }
}
.about-hero__content h1 {
  font-size: 3rem;
  font-family: "Playfair Display SemiBold";
}
@media (min-width: 48rem) {
  .about-hero__content h1 {
    max-width: 30rem;
    font-size: 3.4rem;
  }
}
@media (min-width: 68.75rem) {
  .about-hero__content h1 {
    font-family: "Playfair Display Bold";
    max-width: 35rem;
    font-size: 4rem;
  }
}
@media (min-width: 80rem) {
  .about-hero__content h1 {
    font-size: 5rem;
    max-width: 50rem;
  }
}

.about-company {
  padding: 2rem 1.5rem 3rem;
}
.about-company__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 48rem) {
  .about-company__grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(200px, 1fr);
  }
}
.about-company__content p {
  margin: 0 0 24px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #464647;
}
.about-company__card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  backdrop-filter: blur(4px);
  max-width: 1180px;
  margin: 0 auto;
}
.about-company__card::before {
  display: none;
}
.about-company__card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
}
.about-company__card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-company__card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
}
.about-company__item {
  padding: 0 0 22px;
  margin: 0 0 22px;
  border-bottom: 1px solid rgba(70, 78, 69, 0.14);
}
.about-company__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.about-company__item h3 {
  font-size: 1.5rem;
  text-align: left;
  margin: 0 0 0.5rem 0;
  color: #4c644c;
}
.about-company__item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
  color: #464647;
}
.about-company__caption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #6b7168;
  text-align: center;
}
.about-company__number {
  font-size: 40px;
}
.about-company__founder {
  margin: 0;
}
.about-company__founder img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
  display: block;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.services-section {
  padding: 2rem 1.5rem;
}
@media (min-width: 48rem) {
  .services-section {
    text-align: center;
    padding: 2rem 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}
.services-section h3 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-family: "Playfair Display Bold";
}
.services-section p {
  text-align: center;
  color: #464647;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.service__icon {
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto 1rem;
  margin-bottom: 0rem;
}

@media (min-width: 48rem) {
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
}
@media (min-width: 68.75rem) {
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    gap: 0;
  }
}

.flip-card {
  background-color: transparent;
  width: 100%;
  max-width: 27rem;
  height: 15.6rem;
  perspective: 1000px;
  margin: 0 auto 1rem;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 48rem) {
  .flip-card {
    max-width: 27rem;
    height: 17rem;
    margin: 0 1rem 1rem;
  }
}
@media (min-width: 68.75rem) {
  .flip-card {
    max-width: 27rem;
    margin: 0 2rem 1rem;
    max-height: 25rem;
  }
}
.flip-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card {
  -webkit-tap-highlight-color: transparent;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  background: #FFFFFF;
  padding: 1rem;
  text-align: center;
}

.flip-card:hover .flip-card-front {
  transform: scale(1.02);
}

.flip-card.flipped, .flip-card:hover {
  box-shadow: none !important;
}

.flip-card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flip-card-front h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.flip-card-back {
  transform: rotateY(180deg);
  background-color: #f1f1ed;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.flip-card-back img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flip-card:hover .flip-card-back img {
  transform: scale(1.02);
}

.faq-section {
  background-color: rgb(242, 243, 242);
  border-bottom-color: rgb(202, 206, 202);
  padding: 2.3rem 1rem 1rem 1rem;
}

.faq-section-wrapper {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  background-color: rgb(242, 243, 242);
  border-bottom-color: rgb(202, 206, 202);
}
.faq-section-wrapper .faq-header {
  text-align: center;
  margin-bottom: 2rem;
}
.faq-section-wrapper .faq-header p {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.faq-section-wrapper .faq-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  font-size: 18px;
}
.faq-section-wrapper .faq-container.description {
  text-align: center;
}
.faq-section-wrapper .faq-item {
  border-bottom: 1px solid #ccc;
}
.faq-section-wrapper .faq-item .faq-question {
  font-size: 1.125rem;
  font-family: "Playfair Display";
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  color: #4c644c;
  cursor: pointer;
  position: relative;
}
.faq-section-wrapper .faq-item .faq-question::after {
  content: "▾";
  position: absolute;
  right: 0;
  transition: transform 0.3s;
}
.faq-section-wrapper .faq-item .faq-question.active::after {
  transform: rotate(180deg);
}
.faq-section-wrapper .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-section-wrapper .faq-item .faq-answer p {
  padding-bottom: 1rem;
  font-size: 1rem;
  color: #444;
}
.faq-section-wrapper .faq-item .faq-question.active + .faq-answer {
  max-height: 200px;
}

.contact-wrapper-columns {
  margin: 0rem;
  padding: 0;
}
@media (min-width: 48rem) {
  .contact-wrapper-columns {
    display: flex;
    gap: 10rem;
    justify-content: center;
    align-items: flex-start;
    margin: 2rem 2rem;
    padding: 0;
  }
}

.contact-section {
  padding: 2.3rem 1rem 1rem 1rem;
}
.contact-section p {
  text-align: center;
  color: #464647;
  font-size: 18px;
  line-height: 1.75rem;
}
.contact-section .bottom-section {
  padding: 0.5rem 1rem;
}
.contact-section .bottom-section p {
  text-align: left;
  gap: 0.3rem;
  font-size: 1rem;
}
.contact-section .bottom-section p:hover {
  color: #4a5e42;
  font-weight: bold;
}
@media (min-width: 48rem) {
  .contact-section .bottom-section p {
    align-items: center;
    margin-bottom: 1.1rem;
    margin-top: 0;
  }
}
@media (min-width: 48rem) {
  .contact-section .bottom-section {
    flex: 1;
    max-width: 20.75rem;
    padding: 0;
  }
}
@media (min-width: 48rem) {
  .contact-section {
    margin: 2rem 2rem;
    padding: 0;
  }
}
.contact-section .phone__icon,
.contact-section .email__icon,
.contact-section .location__icon,
.contact-section .fb__icon {
  height: 2.8rem;
  vertical-align: middle;
  margin-right: 0.3rem;
  opacity: 0.6;
}

.location-line {
  display: flex;
  align-items: flex-start;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #FFFFFF;
  font-size: 0.85rem;
  color: #2e2e2e;
}

footer a,
.contact-email,
.contact-phone,
.contact-facebook {
  color: #464647;
  text-decoration: none;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
footer a:hover,
.contact-email:hover,
.contact-phone:hover,
.contact-facebook:hover {
  color: #4a5e42;
  font-weight: bold;
}

.contact-phone {
  text-decoration: none;
}

footer a:focus,
footer a:active,
.contact-email:focus,
.contact-email:active,
.contact-phone:focus,
.contact-phone:active,
.contact-facebook:focus,
.contact-facebook:active {
  color: #4a5e42;
  outline: 2px dashed #4a5e42;
  box-shadow: 0 0 0 3px rgba(55, 71, 49, 0.3);
  border-radius: 4px;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
}

footer a:hover,
.contact-email:hover,
.contact-phone:hover {
  color: #4a5e42;
}

footer a:visited,
.contact-email:visited,
.contact-phone:visited {
  color: #5a705a;
}

.snow-removal-section {
  padding: 7rem 1.5rem 3rem;
  background-color: #f2f3f2;
}

.snow-removal-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 48rem) {
  .snow-removal-inner {
    display: flex;
    gap: 3rem;
    align-items: center;
  }
}

.snow-removal-image {
  margin-bottom: 1.5rem;
}
@media (min-width: 48rem) {
  .snow-removal-image {
    flex: 1;
    margin-bottom: 0;
  }
}
.snow-removal-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 48rem) {
  .snow-removal-text {
    flex: 1;
  }
}
.snow-removal-text h3 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-family: "Playfair Display Bold";
  margin-bottom: 1rem;
}
.snow-removal-text p {
  color: #464647;
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}
.snow-removal-text ul {
  margin: 0 0 1.5rem 1.2rem;
  padding: 0;
  color: #464647;
  font-size: 1rem;
  line-height: 1.6rem;
}

.snow-hero {
  position: relative;
  padding: 9rem 1.5rem 6rem 1.5rem;
  color: #fff;
  text-align: left;
  background-image: url("../assets/images/snow_hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 48rem) {
  .snow-hero {
    padding: 9rem 1.5rem 3rem 3rem;
  }
}
@media (min-width: 80rem) {
  .snow-hero {
    background-attachment: fixed;
  }
}
.snow-hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-family: "Playfair Display SemiBold";
  padding-bottom: 0.86rem;
}
@media (min-width: 48rem) {
  .snow-hero h1 {
    max-width: 30rem;
    font-size: 3.4rem;
  }
}
@media (min-width: 68.75rem) {
  .snow-hero h1 {
    padding-top: 6rem;
    font-family: "Playfair Display Bold";
    max-width: 35rem;
    font-size: 4rem;
  }
}
@media (min-width: 80rem) {
  .snow-hero h1 {
    padding-top: 7rem;
    font-size: 5rem;
    max-width: 50rem;
  }
}
@media (min-width: 48rem) {
  .snow-hero .button {
    margin-bottom: 1rem;
  }
}
@media (min-width: 80rem) {
  .snow-hero .button {
    margin-bottom: 6.5rem;
  }
}
.snow-hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
@media (min-width: 48rem) {
  .snow-hero p {
    max-width: 33rem;
  }
}
@media (min-width: 68.75rem) {
  .snow-hero p {
    font-size: 1.5rem;
    max-width: 43rem;
  }
}
@media (min-width: 80rem) {
  .snow-hero p {
    font-size: 2rem;
    max-width: 50rem;
    margin-bottom: 3rem;
  }
}
.snow-hero h1, .snow-hero h2, .snow-hero p, .snow-hero a {
  position: relative;
  z-index: 1;
}

.snow-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.snow-service {
  background-color: #e4e7e4;
  border-bottom-color: rgb(202, 206, 202);
  padding: 2rem 1.5rem 3rem;
}
.snow-service__container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 48rem) {
  .snow-service__container {
    padding: 0 1.5rem;
  }
}
.snow-service__intro {
  max-width: 760px;
  margin-bottom: 36px;
  text-align: center;
}
@media (min-width: 68.75rem) {
  .snow-service__intro {
    margin: 0 auto 48px;
  }
}
.snow-service__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 68.75rem) {
  .snow-service__grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 1fr);
  }
}
.snow-service__content p {
  margin: 0 0 24px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #464647;
}
.snow-service__cta {
  text-align: center;
}
@media (min-width: 68.75rem) {
  .snow-service__cta {
    text-align: left;
  }
}
.snow-service__button {
  display: inline-block;
  margin-top: 1.5rem;
}
.snow-service__card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.snow-service__card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
}
.snow-service__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(247, 246, 243, 0.84);
}
.snow-service__item {
  position: relative;
  z-index: 2;
  padding: 0 0 22px;
  margin: 0 0 22px;
  border-bottom: 1px solid rgba(70, 78, 69, 0.14);
}
.snow-service__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.snow-service__item h3 {
  font-size: 1.5rem;
  text-align: left;
  margin: 0 0 0.5rem 0;
  color: #4c644c;
}
.snow-service__item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
  color: #464647;
}

.policy-page {
  background-color: rgb(242, 243, 242);
  padding: 2rem 1.5rem 3rem;
  padding-top: 100px;
}
.policy-page__section {
  width: 100%;
}
.policy-page__container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 48rem) {
  .policy-page__container {
    padding: 0 1.5rem;
  }
}
.policy-page__intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.policy-page__updated {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(52, 65, 52, 0.6862745098);
}
.policy-page__content {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
  padding: 2rem;
}
@media (min-width: 48rem) {
  .policy-page__content {
    padding: 2.5rem 2.5rem 2.25rem;
  }
}
@media (min-width: 68.75rem) {
  .policy-page__content {
    padding: 3rem;
  }
}
.policy-page__block {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(70, 78, 69, 0.14);
}
.policy-page__block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.policy-page__block h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.2;
  color: #4c644c;
}
.policy-page__block p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #464647;
}
.policy-page__block p:last-child {
  margin-bottom: 0;
}
.policy-page__email {
  color: #4c644c;
  text-decoration: none;
  text-underline-offset: 0.14em;
  transition: opacity 0.2s ease;
}
.policy-page__email:hover {
  opacity: 0.75;
}
.policy-page__button {
  margin-top: 0.75rem;
}

.policy-page__cta {
  text-align: center;
  margin-top: 1.5rem;
}/*# sourceMappingURL=main.css.map */