@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

@font-face {
  font-family: "Arian-LT";
  src: url("./fonts/Arian-LT.ttf") format("truetype");
}

@font-face {
  font-family: "Autography";
  src: url("./fonts/Autography.otf") format("opentype");
}

:root {
  --green: #08a53d;
  --green-dark: #048731;
  --yellow: #ffca12;
  --cream: #f5f8ef;
  --cream-deep: #eef3e4;
  --black: #090909;
  --white: #ffffff;
  --text: #111111;
  --muted: rgba(255, 255, 255, 0.78);
  --border-light: rgba(255, 255, 255, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
}

main > section {
  opacity: 0;
  transform: translateY(28px);
}

main > section.section-in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms ease;
}

.seq-item {
  opacity: 0;
  transform: translateY(18px);
}

main > section.section-animate .seq-item {
  animation: seqFadeUp 520ms ease forwards;
  animation-delay: var(--seq-delay, 0ms);
}

@keyframes seqFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

button,
summary {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.fa-arrow-up-long{
    transform: rotate(45deg);
}


.narrow {
  width: min(980px, calc(100% - 40px));
}

.brand img {
  width: 148px;
  margin: 4rem auto 0;
}

.script-text {
  font-family: "Autography", cursive;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.8;
}

.section-title,
.hero-title,
.cta-copy h2 {
  font-family: "Arian-LT", Arial, sans-serif;
  letter-spacing: 0.02em;
}

.section-title {
  margin: 0;
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  line-height: 0.94;
}

.section-title.dark {
  color: var(--black);
}

.section-title.light,
.section-kicker.light {
  color: var(--white);
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--white);
}

.section-kicker.dark {
  color: var(--black);
}

.accent-line {
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow);
  margin: 28px 0;
}

.center {
  text-align: center;
}

.center-line {
  margin-left: auto;
  margin-right: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 14px 30px rgba(255, 202, 18, 0.22);
}

.button-secondary {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid rgba(0, 0, 0, 0.14);
}

.button-white {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid rgba(0, 0, 0, 0.16);
}

.button-outline {
  width: 100%;
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(0, 0, 0, 0.45);
}

.button.compact {
  min-height: 50px;
  padding-inline: 22px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 35%),
    linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.42)),
    linear-gradient(120deg, rgba(10, 10, 10, 0.82), rgba(22, 22, 22, 0.6)),
    url("./img/hero-header-img.png") center/cover;
  min-height: 760px;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 202, 18, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 241, 194, 0.96);
  color: #6a5a00;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-title {
  margin: 30px 0 16px;
  max-width: 820px;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.9;
}

.hero-title span {
  display: block;
  font-family: "Autography", cursive;
  font-size: clamp(3.1rem, 6.8vw, 5.7rem);
  line-height: 0.95;
  color: var(--green);
  font-weight: 400;
}

.hero-copy {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.why-section {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 88px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.section-copy {
  color: var(--white);
}

.section-copy p {
  margin: 0 0 20px;
  max-width: 460px;
  line-height: 1.8;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 0 22px;
  border: 1.5px solid var(--border-light);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.94);
}

.benefit-card p {
  margin: 0;
  line-height: 1.5;
}

.benefit-card.featured {
  background: #f8f6eb;
  color: #6f6700;
  border-color: transparent;
}

.benefit-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--yellow);
  position: relative;
}

.benefit-card.featured .benefit-icon {
  color: #ccb000;
}

.benefit-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: currentColor;
}

.participate-section {
  position: relative;
  padding: 92px 0;
  background:
    linear-gradient(180deg, var(--cream), #f7faef);
}

.participate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
  min-width: 0;
}

.participate-copy {
  min-width: 0;
}

.participate-visual {
  position: relative;
  align-self: end;
  max-width: 100%;
  min-width: 0;
}

.participate-visual > img{
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.step-card {
  margin-top: 42px;
  position: relative;
}

.step-swiper {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.step-body {
  min-height: 182px;
  padding: 30px 28px;
  background: var(--white);
  border-radius: 28px;
  /* box-shadow: var(--shadow); */
}

.step-swiper .swiper-wrapper,
.step-swiper .swiper-slide {
  min-width: 0;
}

.step-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  position: relative;
}

.step-icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.step-body h3 {
  margin: 14px 0 12px;
  font-size: 1.5rem;
}

.step-body p {
  margin: 0;
  max-width: 260px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.72);
}

.step-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 45px;
}

.step-toggle .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  opacity: 1;
  background: rgba(17, 17, 17, 0.2);
  transition: background 180ms ease, transform 180ms ease;
}

.step-toggle .swiper-pagination-bullet-active {
  background: var(--green);
  transform: scaleX(1.1);
}

.photo-placeholder {
  position: absolute;
  inset: 18px 0 0 48px;
  border-radius: 34px 34px 0 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7efe5, #d9d2c6 100%);
  box-shadow: var(--shadow);
}

.photo-screen {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 36%;
  height: 30%;
  transform: translateX(-50%);
  border-radius: 6px;
  border: 4px solid #141414;
  background:
    linear-gradient(180deg, #f4f4f4, #cfd6d9);
}

.photo-screen::before {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 50%;
  width: 4px;
  height: 34px;
  transform: translateX(-50%);
  background: #141414;
}

.photo-crowd {
  position: absolute;
  inset: auto 0 0 0;
  height: 54%;
  background:
    radial-gradient(circle at 12% 68%, #1d1d1d 0 28px, transparent 29px),
    radial-gradient(circle at 28% 72%, #2c3441 0 34px, transparent 35px),
    radial-gradient(circle at 43% 62%, #596691 0 38px, transparent 39px),
    radial-gradient(circle at 58% 75%, #1f232c 0 32px, transparent 33px),
    radial-gradient(circle at 72% 67%, #a2694e 0 26px, transparent 27px),
    radial-gradient(circle at 88% 78%, #72824a 0 34px, transparent 35px),
    linear-gradient(180deg, transparent 0 28%, rgba(255, 255, 255, 0.12) 28% 30%, transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.12));
}

.commission-section {
  padding: 96px 0 82px;
  color: var(--white);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #141414, #030303);
}

.commission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.commission-card {
  border-radius: 22px;
  padding: 18px 2.5px 2.5px 2.5px;
  color: var(--black);
  box-shadow: var(--shadow);
}

.commission-card h3 {
  margin: 10px 10px 18px;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-align: center;
}

.commission-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 205px;
  padding: 34px 18px 18px;
  background: var(--white);
  border-radius: 18px;
}

.commission-body p {
  margin: 0;
  line-height: 1.7;
  text-align: center;
}

.a.button.button-outline.seq-item {
    border: none;
}

.yellow {
  background: var(--yellow);
}

.soft-green {
  background: #b9e0a9;
}

.green {
  background: #08b850;
}

.option-band {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

.band-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.faq-section {
  padding: 92px 0;
  background: linear-gradient(180deg, #f4f7ed, #f0f6eb);
}

.faq-list {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.faq-item {
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item[open] {
  background: #fffdf1;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 26px 68px 26px 28px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.12rem, 2.2vw, 0.92rem);
  background: var(--white);
  font-weight: 700;
}

.faq-item[open] summary {
  background: var(--yellow);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 22px 28px 28px;
  color: rgba(17, 17, 17, 0.74);
  line-height: 1.75;
}

.footer-cta {
  padding: 82px 0;
  background:
    linear-gradient(#e9eee070 1px, transparent 1px),
    linear-gradient(90deg, #e9eee07d 1px, transparent 1px),
    linear-gradient(180deg, #fcfcfa74, #f6f8f2);
  background-size:
    36px 36px,
    36px 36px,
    auto;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(250px, 0.7fr);
  gap: 36px;
  align-items: center;
}

.cta-copy > .dark-brand > img{
  margin: 0;
}

.cta-copy h2 {
  max-width: 620px;
  margin: 18px 0 14px;
  color: var(--green);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.94;
}

.cta-copy p {
  margin: 0 0 46px;
  color: rgba(17, 17, 17, 0.74);
  font-size: 1.04rem;
  line-height: 1.7;
}

.cta-copy small {
  font-size: 1rem;
  font-weight: 600;
}

.cta-actions {
  display: grid;
  gap: 14px;
  justify-items: stretch;
}

.dark-outline {
  background: transparent;
  border-color: rgba(17, 17, 17, 0.38);
}

.help-line {
  margin: 18px 0 0;
  text-align: right;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.6;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .two-column,
  .participate-grid,
  .cta-grid,
  .commission-grid {
    grid-template-columns: 1fr;
  }

  .section-copy p {
    max-width: none;
  }

  .photo-placeholder {
    inset: 18px 0 0 0;
  }

  .option-band {
    flex-direction: column;
  }

  .band-line {
    width: 100%;
  }

  .help-line {
    text-align: left;
  }


  .participate-visual {
    position: static;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-self: auto;
  }

  .participate-visual > img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .hero-section,
  .hero-content {
    min-height: 680px;
  }

  .hero-actions,
  .cta-actions {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .step-card {
    padding: 0;
  }

  .participate-grid {
    gap: 28px;
  }

  .step-swiper {
    overflow: hidden;
  }

  .step-swiper .swiper-slide {
    width: 100% !important;
  }

  .step-body {
    width: 100%;
    min-height: 0;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .step-body p {
    max-width: none;
  }

  .participate-visual > img {
    border-radius: 18px;
  }

  .photo-card {
    min-height: 360px;
  }

  .photo-grid {
    width: 120px;
    height: 120px;
    left: -8px;
  }

  .faq-item summary {
    padding-left: 22px;
    padding-right: 56px;
  }
}

@media (max-width: 520px) {
  .hero-content {
    padding-top: 28px;
    padding-bottom: 52px;
  }

  .brand img {
    width: 132px;
  }

  .eyebrow {
    margin-top: 24px;
    font-size: 0.82rem;
    padding: 10px 16px;
  }

  .hero-copy,
  .section-copy p,
  .step-body p,
  .commission-body p,
  .faq-item p,
  .cta-copy p {
    font-size: 0.96rem;
  }

  .section-copy .section-kicker, .script-text{
    font-size: 3.1rem !important;
    /* margin-bottom: .16rem; */
  }

  .why-section,
  .participate-section,
  .commission-section,
  .faq-section,
  .footer-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .photo-placeholder {
    border-radius: 26px 26px 0 0;
  }

  .commission-body {
    min-height: 180px;
  }

  .step-body {
    padding: 20px 16px;
  }

  .participate-grid {
    gap: 22px;
  }
}
