/* #region Header */

.header {
  background-color: #000000;
  color: #ffffff;
  height: 68px;
  padding-inline: 22px;
  position: relative;
  z-index: 4;
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 24px;
}

.desktop-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  box-sizing: content-box;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 160ms linear;
  transform-origin: center;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  right: 0;
  width: 100%;
  height: calc(100% - 60px);
  background: #00000099;
  backdrop-filter: blur(4px);
  transform: translateX(100%);
  transition: transform 240ms ease-in-out;
  padding: 130px 60px 30px;
  overflow: auto;
  z-index: 1000;
}

.mobile-menu.open {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* #endregion */

@media (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
  }

  .mobile-menu {
    background-image: url("./images/hero-bg.webp");
    background-position: center;
    background-size: cover;
  }

  .mobile-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 2;
  }

  .mobile-menu > * {
    position: relative;
    z-index: 3;
  }

  .mobile-menu {
    top: 60px;
    height: calc(100% - 60px);
  }

  body {
    padding-top: 60px;
  }
}

button,
.menu-toggle,
.nav-link,
.footer-nav-links,
.footer-policy-links {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
  transform-origin: center;
}

button:hover,
.menu-toggle:hover,
.nav-link:hover,
.footer-nav-links:hover,
.footer-policy-links:hover {
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  button,
  .menu-toggle,
  .nav-link,
  .footer-nav-links,
  .footer-policy-links {
    transition: none !important;
    transform: none !important;
  }
}

/* #region Hero */

.hero {
  background-image: url("./images/hero-bg.webp");
  background-position: center;
  background-size: cover;
  position: relative;
  padding-inline: 20px;
  overflow: hidden;
}

.hero-coins {
  position: absolute;
  width: 750px;
  height: 750px;
  top: -220px;
  left: -320px;
  z-index: 3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  align-items: flex-start;
}

.hero-title {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 84px;
  line-height: 94px;
  margin-block: 216px 32px;
}

.hero-subtitle {
  max-width: 942px;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 12px;
}

.hero-subtitle-2 {
  max-width: 942px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 220px;
}

/* #endregion */

/* #region Section 1 */
.section-1 {
  background-color: #f6efe3;
  padding: 120px 20px;
}

.section-1-content {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 32px;
}

.section-1-title {
  font-family: "Fraunces", sans-serif;
  max-width: 650px;
  font-weight: 700;
  font-size: 60px;
  line-height: 68px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.section-1-subtitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin-block: 6px 4px;
}

.section-1-text {
  font-size: 16px;
  line-height: 24px;
}

.section-1-text:nth-of-type(3) {
  margin-block: 18px;
}

.section-1-img {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 32px;
}

/* #endregion */

/* #region Guardians */
.guardians {
  padding: 120px 20px;
  background: #f6efe3;
  position: relative;
  overflow: hidden;
}

.guardians-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -20px;
  right: -100px;
  transform: scaleX(-1);
}

.guardians-coins-1 {
  position: absolute;
  width: 650px;
  height: 600px;
  top: 250px;
  right: -50px;
  object-fit: cover;
}

.guardians-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.guardians-title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 68px;
  margin-bottom: 40px;
  color: #000000;
  text-transform: uppercase;
}

.guardians-lead {
  color: #000000;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 24px;
}

.info-panel {
  background: #fbd28b;
  border-radius: 12px;
  margin-top: 32px;
  padding: 48px;
  border: 1px solid #00000012;
}

.info-panel-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 24px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.info-card h3 {
  font-family: "Fraunces", serif;
  font-size: 16px;
  margin: 0 0 10px;
}

.info-card p {
  margin: 0;
  color: #2a2a2a;
  font-size: 14px;
  line-height: 1.4;
}

/* #endregion */

/* #region Grove */
.grove {
  background-color: #f6efe3;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.grove-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -100px;
  right: -75px;
  z-index: 5;
  transform: rotate(-90deg) scaleY(-1);
}

.grove-coins-1 {
  position: absolute;
  width: 513px;
  height: 550px;
  top: 780px;
  left: -200px;
}

.grove-coins-2 {
  position: absolute;
  width: 513px;
  height: 550px;
  bottom: -100px;
  right: -80px;
  transform: rotate(-90deg);
}

.grove-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
}

.grove-title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 68px;
  text-transform: uppercase;
  margin: 0 0 31px;
}

.grove-textBlock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.grove-lead {
  margin-block: 9px;
  font-size: 16px;
  line-height: 24px;
}

.grove-rows {
  display: grid;
  gap: 32px;
  width: 100%;
}

.grove-row {
  width: 100%;
  display: flex;
  gap: 18px;
  align-items: center;
}

.grove-row.reverse {
  display: flex;
  flex-direction: row-reverse;
}

.grove-media {
  width: 49.5%;
  max-height: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 32px;
  display: block;
  object-position: top;
}

.grove-text h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 24px;
}

.grove-text p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

/* #endregion */

/* #region Plants */

.plants {
  padding: 120px 20px;
  background: #fbd28b;
}

.plants-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.plants-title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 68px;
  margin-bottom: 40px;
  color: #000000;
  text-transform: uppercase;
}

.plants-lead {
  color: #000000;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 24px;
}

.plants-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.plants-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 32px;
  margin-bottom: 18px;
}

.plants-item-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 24px;
}

.plants-item-text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

/* #endregion */

/* #region Nature */
.nature {
  padding: 120px 0 98px;
  background: #f6efe3;
}

.nature-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nature-title {
  padding-inline: 20px;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 68px;
  margin-bottom: 32px;
  color: #000000;
  text-transform: uppercase;
}

.nature-lead {
  padding-inline: 20px;
  color: #000000;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 24px;
}

.nature-swiper {
  position: relative;
  display: flex;
  align-items: center;
}

.swiper-track {
  display: flex;
  gap: 32px;
  width: 100%;
  overflow: auto;
  position: relative;
  padding-bottom: 32px;
}

.nature-item {
  display: flex;
  flex-direction: column;
  min-width: 28%;
  max-width: 400px;
}

.nature-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

.nature-item-title {
  margin: 18px 0 8px;
  font-size: 18px;
  line-height: 24px;
}

.nature-item-text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

/* #endregion */

/* #region FAQ */
.faq {
  padding: 80px 20px;
  background: #f6efe3;
  position: relative;
  overflow: hidden;
}

.faq-coins {
  top: 30px;
  right: -120px;
}

.faq-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.faq-title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 68px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fbd28b;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.faq-caret {
  margin-left: 12px;
  transition: transform 220ms ease;
}

.faq-item.open .faq-caret {
  transform: rotate(-180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 260ms ease,
    padding 200ms ease;
  padding: 0 40px;
}

.faq-item.open .faq-answer {
  padding: 12px 20px 18px;
  max-height: none !important;
}

@media screen and (max-width: 840px) {
  .faq-title {
    font-size: 40px;
    line-height: 48px;
  }
}

/* #endregion */

/* #region Footer */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 20px 24px;
}

.footer-content {
  display: flex;
  flex-direction: column;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid white;
  padding-bottom: 14px;
  width: 100%;
}

.footer-nav-links {
  font-family: "Fraunces", serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.footer-policy-links {
  font-family: "Fraunces", serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
}

.footer-info {
  font-family: "Fraunces", serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 100;
  text-align: center;
}

/* #endregion */

@media screen and (max-width: 1000px) {
  /* #region Header */

  .header {
    height: 60px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: flex;
    gap: 42px;
    flex-direction: column;
  }

  .nav-link {
    max-width: fit-content;
    color: #ffffff;
  }

  /* #endregion */

  /* #region Hero */
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.4) 100%
    );
  }

  .hero-coins {
    position: absolute;
    width: 409px;
    height: 444px;
    top: -20px;
    left: auto;
    right: -150px;
    z-index: 9999;
  }

  .hero-title {
    font-weight: 700;
    font-size: 52px;
    line-height: 60px;
    margin-block: 61px 32px;
  }

  .hero-subtitle {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
  }

  .hero-subtitle-2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 121px;
  }

  /* #endregion */

  /* #region Section 1 */
  .section-1 {
    padding: 40px 20px 78px;
  }

  .section-1-content {
    display: flex;
    flex-direction: column;
  }

  .section-1-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 22px;
  }

  .section-1-img {
    min-height: 434px;
  }

  /* #endregion */

  /* #region Guardians */
  .guardians {
    padding: 40px 20px;
  }

  .guardians-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 22px;
  }

  .info-panel {
    background: #fbd28b;
    border-radius: 12px;
    margin-top: 32px;
    padding: 48px;
    border: 1px solid #00000012;
  }

  .info-panel-title {
    margin-bottom: 22px;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .info-panel {
    padding: 16px;
  }

  /* #endregion */

  /* #region Grove */
  .grove {
    padding: 40px 20px;
  }

  .grove-circle {
    width: 320px;
    height: 320px;
    top: -50px;
    right: -80px;
  }

  .grove-coins-1 {
    top: 420px;
    left: -150px;
  }

  .grove-coins-2 {
    width: 720px;
    height: 780px;
    bottom: 50px;
    right: -200px;
  }

  .grove-title {
    font-size: 28px;
    line-height: 38px;
    margin: 0 0 22px;
  }

  .grove-textBlock {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 32px;
  }

  .grove-lead {
    margin-block: 0;
  }

  .grove-rows {
    display: grid;
    gap: 32px;
    width: 100%;
  }

  .grove-row {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .grove-row.reverse {
    flex-direction: column;
  }

  .grove-media {
    width: 100%;
    max-height: 420px;
    object-position: top;
  }

  /* #endregion */

  /* #region Plants */

  .plants {
    padding: 40px 20px;
  }

  .plants-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 22px;
  }

  /* #endregion */

  /* #region Nature */
  .nature {
    padding: 40px 0 18px;
  }

  .nature-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 22px;
  }

  .nature-item {
    min-width: 90%;
  }

  /* #endregion */
}

@media screen and (max-width: 615px) {
  .plants-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 20px 24px;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 22px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 500px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .grove-media {
    max-height: 220px;
  }
}

/* Nature / Swiper styles */

/* Mobile: horizontal scroll with snap */
/* @media screen and (max-width: 840px) {
  .nature-item {
    flex: 0 0 76%;
  }
  .swiper-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .nature-item {
    scroll-snap-align: center;
  }
  .swiper-btn {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  .nature-img {
    height: 180px;
  }
  .nature-title {
    font-size: 32px;
  }
} */
