:root {
  --color-bg: #1a1713;
  --color-gold: #ffb600;
  --color-gold-light: #ffe387;
  --color-gold-dark: #de9f00;
  --color-text: #ffffff;
  --color-text-dark: #000000;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Poiret One', cursive;
  --max-width: 1200px;
  --border-radius: 20px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.6;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
  text-transform: uppercase;
}

/* ---------- Decorations bar ---------- */
.decorations-bar {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.decorations-bar__ribbon {
  width: 100%;
  height: 40px;
  object-fit: cover;
  object-position: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/drawings-roof-church.jpg') center / cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.hero__frame {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid var(--color-gold);
  border-radius: 30px;
}

.hero__badge {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
  color: transparent;
  background-image: linear-gradient(
    0.433turn,
    rgba(255, 182, 0, 1) 0%,
    rgba(255, 182, 0, 1) 44%,
    rgba(255, 227, 156, 1) 64%,
    rgba(255, 182, 0, 1) 85%,
    rgba(255, 182, 0, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
}

.hero__title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  background-image: linear-gradient(
    0.433turn,
    rgba(255, 182, 0, 1) 0%,
    rgba(255, 182, 0, 1) 49%,
    rgba(255, 227, 156, 1) 64%,
    rgba(255, 182, 0, 1) 85%,
    rgba(255, 182, 0, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 30px;
}

.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.hero__btn {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  color: #2a251f;
  background: linear-gradient(
    0.404turn,
    rgba(255, 182, 0, 1) 0%,
    rgba(255, 182, 0, 1) 30%,
    rgba(255, 216, 120, 1) 61%,
    rgba(255, 182, 0, 1) 82%,
    rgba(255, 182, 0, 1) 100%
  );
  border-radius: 20px;
  padding: 14px 20px;
  min-width: 190px;
  text-align: center;
  transition: filter 0.2s ease-in-out;
}

.hero__btn:hover {
  filter: brightness(1.1);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: 25px;
  color: #ffffff;
  margin-bottom: 30px;
}

.hero__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  color: transparent;
  background-image: linear-gradient(
    0.433turn,
    rgba(255, 182, 0, 1) 0%,
    rgba(255, 182, 0, 1) 44%,
    rgba(255, 227, 156, 1) 64%,
    rgba(255, 182, 0, 1) 77%,
    rgba(255, 182, 0, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 30px;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero__tagline--right span {
  color: var(--color-gold);
}

.hero__bottom-text {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.hero__bottom-subtext {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.7;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* ---------- Banners ---------- */
.banner {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(
    0.382turn,
    rgba(181, 130, 2, 1) 0%,
    rgba(255, 207, 85, 1) 23%,
    rgba(218, 162, 22, 1) 49%,
    rgba(252, 221, 145, 1) 63%,
    rgba(181, 130, 2, 1) 83%,
    rgba(181, 130, 2, 1) 100%
  );
  color: #000000;
}

.banner__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.banner__subtitle {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.banner__text {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* ---------- Services grid ---------- */
.services-grid {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.services-grid__heading {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  background-image: linear-gradient(
    0.305turn,
    rgba(255, 182, 0, 1) 0%,
    rgba(255, 182, 0, 1) 25%,
    rgba(255, 218, 126, 1) 49%,
    rgba(255, 182, 0, 1) 69%,
    rgba(255, 182, 0, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
}

.services-grid__subheading {
  font-family: var(--font-display);
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 60px;
}

.services-grid__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.services-grid__item {
  background-color: var(--color-bg);
  border: 2px solid #ffffff;
  border-radius: 20px;
  padding: 20px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(240, 175, 61, 0.2);
}

.services-grid__image {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  z-index: 0;
}

.services-grid__image img {
  border-radius: 18px;
}

.services-grid__image--left {
  left: -180px;
  top: 180px;
  width: 316px;
  transform: rotate(352deg);
}

.services-grid__image--right {
  right: -180px;
  top: 200px;
  width: 340px;
  transform: rotate(8deg);
}

/* ---------- Trust section ---------- */
.trust-section {
  text-align: center;
  padding: 80px 20px;
}

.trust-section__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  background-image: linear-gradient(
    0.305turn,
    rgba(255, 182, 0, 1) 0%,
    rgba(255, 182, 0, 1) 25%,
    rgba(255, 218, 126, 1) 49%,
    rgba(255, 182, 0, 1) 69%,
    rgba(255, 182, 0, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
}

.trust-section__subtitle {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

/* ---------- Services columns ---------- */
.services-columns {
  padding: 80px 20px;
  text-align: center;
}

.services-columns__intro {
  font-family: var(--font-display);
  font-size: 25px;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto 60px;
}

.services-columns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
}

.service-card {
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--color-gold);
  border-radius: var(--border-radius);
  padding: 30px 20px;
  text-align: left;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card__list li {
  font-family: var(--font-display);
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.service-card__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.services-columns__outro {
  font-family: var(--font-display);
  font-size: 20px;
  color: #ffffff;
  max-width: 900px;
  margin: 20px auto 0;
}

.services-columns__outro--highlight {
  color: var(--color-gold);
}

/* ---------- Future section ---------- */
.future-section {
  padding: 80px 20px;
  text-align: center;
}

.future-section__title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  background-image: linear-gradient(
    0.305turn,
    rgba(255, 182, 0, 1) 0%,
    rgba(255, 182, 0, 1) 25%,
    rgba(255, 218, 126, 1) 49%,
    rgba(255, 182, 0, 1) 69%,
    rgba(255, 182, 0, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 30px;
}

.future-section__text {
  font-family: var(--font-display);
  font-size: 25px;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- About section ---------- */
.about-section {
  position: relative;
  padding: 80px 20px 40px;
  text-align: center;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/low-angle-shot-churc.jpg') center / cover no-repeat;
  z-index: 0;
}

.about-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 19, 0.75);
  z-index: 1;
}

.about-section__name {
  position: relative;
  z-index: 2;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  background-image: linear-gradient(
    0.305turn,
    rgba(255, 182, 0, 1) 0%,
    rgba(255, 182, 0, 1) 25%,
    rgba(255, 218, 126, 1) 49%,
    rgba(255, 182, 0, 1) 69%,
    rgba(255, 182, 0, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 10px;
}

.about-section__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-gold-light);
  margin-bottom: 30px;
}

.about-section__text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.8;
  color: var(--color-text);
}

.about-section__text p {
  margin-bottom: 20px;
}

/* ---------- CTA section ---------- */
.cta-section {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  text-align: center;
  margin-top: 20px;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-section__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 700;
  color: transparent;
  background-image: linear-gradient(
    0.305turn,
    rgba(255, 182, 0, 1) 0%,
    rgba(255, 182, 0, 1) 25%,
    rgba(255, 218, 126, 1) 49%,
    rgba(255, 182, 0, 1) 69%,
    rgba(255, 182, 0, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 20px 15px;
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255, 182, 0, 0.2);
}

.site-footer__text {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__link {
  color: var(--color-gold, #ffb600);
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-footer__link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 40px 15px;
  }

  .hero__frame {
    padding: 30px 15px;
  }

  .hero__badge {
    font-size: 16px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__buttons {
    gap: 6px;
  }

  .hero__btn {
    font-size: 12px;
    min-width: 90px;
    padding: 10px 8px;
    border-radius: 10px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__phone {
    font-size: 30px;
  }

  .hero__tagline {
    font-size: 14px;
  }

  .hero__bottom-text {
    font-size: 16px;
  }

  .hero__bottom-subtext {
    font-size: 12px;
  }

  .banner__title {
    font-size: 25px;
  }

  .banner__subtitle {
    font-size: 14px;
  }

  .banner__text {
    font-size: 16px;
  }

  .services-grid {
    padding: 40px 15px;
  }

  .services-grid__heading {
    font-size: 35px;
  }

  .services-grid__subheading {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .services-grid__list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .services-grid__item {
    font-size: 11px;
    padding: 15px;
  }

  .services-grid__image {
    display: none;
  }

  .trust-section {
    padding: 40px 15px;
  }

  .trust-section__title {
    font-size: 20px;
  }

  .trust-section__subtitle {
    font-size: 14px;
  }

  .services-columns {
    padding: 40px 15px;
  }

  .services-columns__intro {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .services-columns__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card__title {
    font-size: 18px;
  }

  .service-card__list li {
    font-size: 16px;
  }

  .services-columns__outro {
    font-size: 12px;
  }

  .future-section {
    padding: 40px 15px;
  }

  .future-section__title {
    font-size: 40px;
  }

  .future-section__text {
    font-size: 14px;
  }

  .about-section {
    padding: 40px 15px 20px;
  }

  .about-section__name {
    font-size: 30px;
  }

  .about-section__title {
    font-size: 24px;
  }

  .about-section__text {
    font-size: 18px;
  }

  .cta-section {
    padding: 30px 15px;
  }

  .cta-section__title {
    font-size: 14px;
  }

  .cta-section__phone {
    font-size: 36px;
  }
}
