:root {
  --black: #0a0605;
  --maroon: #86171A;
  --maroon-deep: #5c0f11;
  --brand-red: #A1291B;
  --rust: #B35026;
  --gold: #FCAE1A;
  --teal: #037F74;
  --paper: #F4EBDD;
  --ink: #141010;
  --line: rgba(244, 235, 221, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #FFFBF0;
  color: #2C0503;
  font-weight: 400;
  font-size: 50px;
  font-family: 'Apple Garamond', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: #2C0503;
}

a {
  color: inherit;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--gold);
}

/* ============ RIBBON (signature element) ============ */
.ribbon {
  display: flex;
  width: 100%;
  height: 10px;
}

.ribbon span {
  flex: 1;
}

.ribbon span:nth-child(1) {
  background: var(--black);
}

.ribbon span:nth-child(2) {
  background: var(--brand-red);
}

.ribbon span:nth-child(3) {
  background: var(--rust);
}

.ribbon span:nth-child(4) {
  background: var(--gold);
}

.ribbon span:nth-child(5) {
  background: var(--teal);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6vw;
  background: linear-gradient(180deg, rgba(10, 6, 5, 0.6) 0%, rgba(10, 6, 5, 0) 100%);
}

.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav .brand img {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 22px rgba(0, 0, 0, 0.35));
}

.nav .cta-mini {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
}

.hero {
  position: relative;
  display: block;
  line-height: 0;
  /* overflow must NOT be hidden so abs-positioned children (button, scroll) show on mobile */
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8vh;
  background: linear-gradient(to bottom, rgba(255, 251, 240, 0) 0%, #FFFBF0 100%);
  pointer-events: none;
  z-index: 3;
}

/* Shared base for all hero images */
.hero img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* By default: show desktop banner, hide mobile banner.
   Use img.hero-* selectors to match specificity of .hero img (0,0,1,1 vs 0,0,1,1) */
img.hero-mobile-banner {
  display: none;
}

img.hero-desktop-banner {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}


.hero-overlay-cta {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: auto;
}

.hero-register-btn {
  background: #A1291B;
  color: #FFFFFF;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-register-btn:hover {
  background: #8a2016;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  pointer-events: auto;
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(4px);
}

.scroll-mouse {
  width: 56px;
  height: 56px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
}

@keyframes scrollBounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(14px);
    opacity: 0.4;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.hero .eyebrow {
  margin-top: 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04;
  margin: 18px 0 20px;
  color: var(--paper);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero p.sub {
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  color: rgba(244, 235, 221, 0.85);
  max-width: 520px;
  margin-bottom: 34px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #A1291B;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow .25s ease;
}

.btn:hover,
.btn:active {
  background: #A1291B;
  /* Keeps it yellow */
  color: var(--black);
  transform: translateY(-2px);
}


.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--black), 0 0 0 6px var(--gold);
}

.btn svg {
  transition: transform .25s ease;
}

.btn:hover svg {
  transform: translateY(3px);
}

/* ============ FORM SECTION ============ */
.section {
  background: #FFFBF0;
  padding: 0px 6vw 0px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head .eyebrow {
  color: #A1291B;
  font-weight: 400;
  font-family: 'Apple Garamond', serif;
  font-size: 50px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-top: 14px;
  color: #A1291B;
}

.section-head p {
  margin-top: 14px;
  color: #A1291B;
  font-size: 1rem;
  line-height: 1.6;
}

form {
  max-width: 760px;
  margin: 0 auto;
  padding: 0px 15px 60px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px 40px;
}

.field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2C0503;
  margin-bottom: 10px;
  transition: color .2s ease;
  font-weight: 500;
}

.field input,
.field select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid #2C0503;
  color: #2C0503;
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  padding: 0px 2px 3px;
  outline: none;
  transition: border-color .25s ease;
}

/* Autofill styling overrides to maintain light mode aesthetics */
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus,
.field input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #FFFBF0 inset !important;
  box-shadow: 0 0 0 1000px #FFFBF0 inset !important;
  -webkit-text-fill-color: #000000 !important;
  caret-color: #000000;
  transition: background-color 5000s ease-in-out 0s;
}

.field input:autofill {
  -webkit-box-shadow: 0 0 0 1000px #FFFBF0 inset !important;
  box-shadow: 0 0 0 1000px #FFFBF0 inset !important;
  -webkit-text-fill-color: #000000 !important;
  caret-color: #000000;
}

/* Custom Dropdown Select styling */
.custom-select {
  position: relative;
  width: 100%;
}

.select-trigger {
  cursor: pointer;
  background-color: transparent;
  border-bottom: 1px solid #000000;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  padding: 8px 2px 12px;
  outline: none;
  transition: border-color .25s ease;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F4EBDD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 28px;
  user-select: none;
}

.custom-select.active .select-trigger {
  border-bottom-color: #000000;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FCAE1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 15l-6-6-6 6'/%3E%3C/svg%3E");
}

.select-options-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  max-height: 170px;
  /* Shorter height to show multiple states cleanly */
  overflow-y: auto;
  background: #0d0908;
  border: 1px solid rgba(244, 235, 221, 0.15);
  border-top: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;

  /* Hide scrollbar completely while keeping it scrollable */
  scrollbar-width: none !important;
  /* Firefox */
  -ms-overflow-style: none !important;
  /* IE/Edge */
}

.select-options-container::-webkit-scrollbar {
  display: none !important;
  /* Safari and Chrome */
  width: 0px !important;
  height: 0px !important;
  background: transparent !important;
}

.custom-select.active .select-options-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.select-option {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.95rem;
  color: rgba(244, 235, 221, 0.85);
  transition: all 0.2s ease;
  text-align: left;
}

.select-option:hover {
  background: rgba(252, 174, 26, 0.08);
  color: var(--gold);
  padding-left: 20px;
}

.select-option.selected {
  background: rgba(252, 174, 26, 0.15);
  color: var(--gold);
  font-weight: 600;
}

.field input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.field input:focus,
.field select:focus {
  border-bottom-color: var(--gold);
}

.field:focus-within label {
  color: var(--gold);
}

/* Suppress browser default red :invalid outline/border while typing */
.field input:invalid,
.field select:invalid {
  box-shadow: none;
  border-bottom-color: #000000;
}

.field input:focus:invalid,
.field select:focus:invalid {
  border-bottom-color: var(--gold);
}

/* Show red border for invalid fields when they are not focused and contain values */
.field input:invalid:not(:focus):not(:placeholder-shown),
.field select:invalid:not(:focus) {
  border-bottom-color: var(--brand-red);
}

.submit-row {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.submit-row .note {
  font-size: 12.5px;
  color: #000000;
  max-width: 320px;
  line-height: 1.6;
}

/* success state */
.success {
  display: none;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 30px;
  border: 1px solid var(--line);
}

.success.show {
  display: block;
}

/* success-mode layout overrides */
body.success-mode>*:not(#register) {
  display: none !important;
}

body.success-mode .section-head {
  display: none !important;
}

body.success-mode #register {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 6vw;
  background: #FFFBF0;
}

body.success-mode #successBox {
  width: 100%;
  border: 1px solid #000000;
  background: #FFFFFF;
  box-shadow: 0 24px 60px rgba(10, 6, 5, 0.06), 0 0 50px rgba(10, 6, 5, 0.02);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.btn-back:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  border-color: var(--gold) !important;
}

form.hide {
  display: none;
}

/* error state */
.error-box {
  display: none;
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  border: 1px solid var(--maroon);
  background: rgba(134, 23, 26, 0.08);
  color: var(--maroon);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.error-box.show {
  display: block;
}

/* spinner animation */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.spinner {
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
}

.success .mark {
  width: 46px;
  margin: 0 auto 22px;
  opacity: 0.9;
}

.success h3 {
  font-size: 1.6rem;
  color: #A1291B;
  margin-bottom: 10px;
}

.success p {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Success ID Card & Action styles */
.id-card {
  background: rgba(161, 41, 27, 0.04);
  border: 1px dashed #A1291B;
  border-radius: 4px;
  padding: 24px;
  margin: 28px 0;
  text-align: center;
}

.id-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
  font-weight: 700;
}

.id-value-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.id-value {
  font-family: monospace;
  font-size: 2rem;
  font-weight: 700;
  color: #A1291B;
  letter-spacing: 0.05em;
}

.btn-copy {
  background: rgba(161, 41, 27, 0.08);
  border: 1px solid #A1291B;
  color: #A1291B;
  padding: 8px 16px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-copy:hover {
  background: #A1291B;
  color: #FFFBF0;
}

.id-note {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}

.success-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.btn-ok {
  background: #000000;
  color: #FFFBF0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  max-width: 280px;
  justify-content: center;
  text-align: center;
}

.btn-ok:hover {
  background: #A1291B;
  color: #FFFBF0;
  transform: translateY(-2px);
}

.btn-guidelines {
  background: rgba(161, 41, 27, 0.08);
  border: 1px solid #A1291B;
  color: #A1291B;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Poppins', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 280px;
  justify-content: center;
  text-align: center;
}

.btn-guidelines:hover {
  background: #A1291B;
  color: #FFFBF0;
  border-color: #A1291B;
  transform: translateY(-2px);
}

/* ============ JOURNEY / INTRO ============ */
.journey-section {
  background: #FFFBF0;
  padding: 0px 6vw 0px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 99999999;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  max-width: 100%;
  margin: 0;
}

.journey-left {
  text-align: left;
}

.journey-right {
  display: flex;
  justify-content: flex-start;
}

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

.journey-section .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
}

.journey-section .campaign-title {
  font-family: 'Apple Garamond', serif;
  font-size: 50px;
  font-weight: 500;
  color: #A1291B;
  margin-bottom: 28px;
  line-height: 1.1;
}

.journey-section .journey-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #2C0503;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
}

.journey-section .hook {
  font-size: 16px;
  color: #2C0503;
  max-width: 620px;
  margin: 0 0 24px 0;
  line-height: 1.7;
}

.journey-body {
  max-width: 640px;
  margin: 0;
  text-align: left;
}

.journey-body p {
  color: #2C0503;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.journey-body .tagline-block {
  margin-top: 28px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-body .tagline-block .draw-line {
  font-family: 'Apple Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-style: italic;
  color: #2C0503;
  margin-bottom: 10px;
}


/* ============ ABOUT 2-COL ============ */
.about-section {
  background: #A1291B;
  padding: 80px 4vw;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 100%;
  margin: 0 auto;
}

.about-card .cream-color {
  color: #FFFBF0;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  letter-spacing: 0px;
  padding: 10px 0 0;
}

.about-card {
  padding: 48px 28px;
}

.about-card .card-eyebrow {
  font-size: 50px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: 'Apple Garamond', serif;
}


.about-card .sub-headline {
  font-style: semibold;
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 0px;
  font-weight: 600;
  font-family: 'poppins', serif;
}

.about-card cream-color {
  color: #FFFBF0
}

.about-card p {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.75;
  margin-bottom: 10px;
}

.about-card p:last-child {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  color: white;
  font-style: Regular;
  font-family: 'poppins', sans-serif'

}

.about-card .brand-sign {
  margin-top: 22px;
  font-family: 'Apple Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}

/* ============ THE CHALLENGE ============ */
.challenge-section {
  background: #FFFBF0;
  padding: 70px 4vw 60px;
}

.challenge-container {
  max-width: 1443px;
  margin: 0 auto;
  text-align: center;
}

.challenge-section-title {
  font-family: 'Apple Garamond', serif;
  font-size: 50px;
  font-weight: 400;
  color: #86171A;
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.1;
}

.challenge-intro {
  margin-bottom: 40px;
}

.challenge-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 20.5px;
  font-weight: 600;
  color: #2C0503;
  margin-bottom: 6px;
  line-height: 1.4;
}

.challenge-explore-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20.5px;
  font-style: italic;
  font-weight: 400;
  color: #2C0503;
  margin-bottom: 24px;
}

/* Pill tags for topics */
.topic-pills {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center;
  gap: 12px 14px;
  margin: 0 auto 30px;
  padding: 0;
  list-style: none;
  max-width: 1200px;
}

.topic-pills li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #2C0503;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  padding: 8px 22px;
  line-height: 1.3;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.topic-pills li:hover {
  background: rgba(161, 41, 27, 0.05);
  border-color: #86171A;
  color: #86171A;
}

/* Seven Stages of Rice Farming */
.stages-wrapper {
  margin: 36px auto 20px;
  width: 100%;
}

.stages-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20.5px;
  font-weight: 600;
  color: #2C0503;
  margin-bottom: 44px;
  text-align: center;
}

.stages-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px;
}

.stages-staircase {
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-width: 800px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.stage-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.stage-num {
  font-family: 'Poppins', 'Fraunces', sans-serif;
  font-size: 52px;
  font-weight: 300;
  color: #2C0503;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stage-bar {
  width: 100%;
  height: 14px;
  background: #8B2519;
}

.stage-drop {
  width: 100%;
  border-left: 1.5px dotted #B85D43;
  box-sizing: border-box;
}

/* Step heights connecting diagonally */
.step-1 .stage-drop {
  height: 24px;
}

.step-2 .stage-drop {
  height: 38px;
}

.step-3 .stage-drop {
  height: 52px;
}

.step-4 .stage-drop {
  height: 66px;
}

.step-5 .stage-drop {
  height: 80px;
}

.step-6 .stage-drop {
  height: 94px;
}

.step-7 .stage-drop {
  height: 108px;
  border-right: 1.5px dotted #B85D43;
}

.stage-label {
  margin-top: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: #2C0503;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

.challenge-quote {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  color: #2C0503;
  text-align: center;
  margin-top: 40px;
  line-height: 1.5;
}

/* ============ ART TRAVEL + HOW TO PARTICIPATE (2-col) ============ */
.art-travel-section {
  background: #FFFBF0;
  padding: 50px 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left column: image + caption */
.art-travel-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.art-travel-section .art-travel-title {
  font-family: 'Apple Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: #A1291B;
  margin-bottom: 28px;
  text-align: left;
  line-height: 1.1;
}

.art-travel-img-wrap {
  width: 100%;
  max-width: 460px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.art-travel-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.art-travel-caption {
  text-align: left;
  max-width: 420px;
}

.art-travel-caption h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #2C0503;
  margin-bottom: 8px;
  line-height: 1.4;
}

.art-travel-caption p {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  color: #2C0503;
  line-height: 1.55;
  margin: 0 0 3px;
}

.art-travel-caption .travel-italic {
  font-style: italic;
  font-weight: 700;
  margin-top: 10px;
}

/* Right column: How to participate */
.art-travel-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.how-inline-title {
  font-family: 'Apple Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: #A1291B;
  margin-bottom: 28px;
  line-height: 1.1;
  text-align: left;
}

.how-inline-steps {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 440px;
}

.how-step-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.how-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 44px;
  flex-shrink: 0;
}

.how-step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #A1291B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-step-circle span {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
}

.how-step-connector {
  width: 48px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.how-step-connector svg {
  width: 16px;
  height: 120px;
  display: block;
}

.how-step-content {
  padding-top: 4px;
  padding-bottom: 8px;
  flex: 1;
}

.how-step-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #A1291B;
  margin-bottom: 3px;
  line-height: 1.3;
}

.how-step-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  color: #2C0503;
  line-height: 1.45;
  margin: 0;
}

.how-deadline-bar {
  background: #A1291B;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 14px 20px;
  border-radius: 6px;
  margin-top: 70px;
  letter-spacing: 0.04em;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 12px rgba(161, 41, 27, 0.15);
}

/* ============ WHO CAN PARTICIPATE ============ */
.who-participate-section {
  background: #FFFBF0;
  padding: 50px 4vw 70px;
  text-align: center;
}

.who-participate-title {
  font-family: 'Apple Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: #A1291B;
  margin-bottom: 28px;
  line-height: 1.1;
  text-align: center;
}

.who-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.who-badge {
  background: #230604;
  color: #FFFFFF;
  border-radius: 100px;
  padding: 11px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.who-badge:hover {
  transform: translateY(-2px);
  background: #380a07;
}

.who-badge .who-icon {
  align-items: center;
  justify-content: center;
}

/* ============ WHAT ARE WE LOOKING FOR ============ */
.criteria-section {
  background: #FFFBF0;
  padding: 80px 6vw;
  text-align: center;
}

.criteria-title {
  font-family: 'Apple Garamond', serif;
  font-size: 50px;
  font-weight: 400;
  color: #A1291B;
  margin-bottom: 60px;
}

.criteria-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.criteria-card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 280px;
  max-width: 408px;
  box-sizing: border-box;
  background: #FFFBF0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.criteria-card2 {
  flex: 0 1 calc(48% - 16px);
  max-width: 646px;
  box-sizing: border-box;
  background: #FFFBF0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin: 20px 0 0;
}

.criteria-card img {
  width: 100px;
  height: 74px;
  object-fit: contain;
  display: block;
}

.criteria-card2 img {
  width: 100px;
  height: 74px;
  object-fit: contain;
  display: block;
}

.criteria-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 0.02em;
  text-align: center;
}

.criteria-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* Prizes Section */
.prizes-section {
  background: #A1291B;
  padding: 90px 4vw 100px;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}

.prizes-title {
  font-family: 'Apple Garamond', serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.prizes-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 76px;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  justify-items: center;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto 84px;
}

.prize-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.prize-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #FFFFFF;
  text-align: center;
}

.prize-1 h4 {
  font-size: 40px;
}

.prize-amt-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prize-card .amt {
  font-family: 'Apple Garamond', serif;
  font-size: 62px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  position: relative;
  z-index: 2;
}

.prize-1 .amt {
  font-size: 100px;
}

.prize-art {
  position: absolute;
  z-index: 1;
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
  transform-origin: bottom center;
}

/* 1st Prize Laurels */
.prize-1 .prize-art {
  width: 112px;
  height: 168px;
  bottom: -29px;
}

.prize-1 .prize-art-left {
  left: -35px;
  transform: rotate(-26deg);
}

.prize-1 .prize-art-right {
  right: -40px;
  transform: scaleX(-1) rotate(-26deg);
}

/* 2nd & 3rd Prize Laurels */
.prize-2 .prize-art,
.prize-3 .prize-art {
  width: 82px;
  height: 124px;
  bottom: -30px;
}

.prize-2 .prize-art-left,
.prize-3 .prize-art-left {
  left: -28px;
  transform: rotate(-26deg);
}

.prize-2 .prize-art-right,
.prize-3 .prize-art-right {
  right: -30px;
  transform: scaleX(-1) rotate(-26deg);
}

.more-prizes-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
  text-align: center;
  color: #FFFFFF;
}

.more-prizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
}

.more-prize-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 350px;
  margin: 0 auto;
  width: 100%;
}

.more-prize-item img {
  width: 67px;
  height: 67px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.more-prize-item h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 12px;
  color: #FFFFFF;
  text-align: center;
}

.more-prize-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
  max-width: 100%;
  text-align: center;
}

.more-prize-item.highlight-feature {
  background: #FFFBF0;
  border-radius: 8px;
  padding: 32px 24px;
  max-width: 360px;
}

.more-prize-item.highlight-feature .inner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
}

.more-prize-item.highlight-feature img {
  filter: none;
  opacity: 1;
  margin-bottom: 24px;
}

.more-prize-item.highlight-feature h5 {
  color: #2C0503;
}

.more-prize-item.highlight-feature p {
  color: #2C0503;
}



.prizes-block {
  margin-bottom: 18px;
}

.prizes-block h5 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.prize-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.prize-row:last-child {
  border-bottom: none;
}

.prize-row .pos {
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
}

.prize-row .amt {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: #A1291B;
  font-weight: 700;
}

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

.recognition-list li {
  padding: 10px 0 10px 18px;
  position: relative;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.recognition-list li:last-child {
  border-bottom: none;
}

.recognition-list li::before {
  content: '\2605';
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  color: #A1291B;
  top: 13px;
}

/* ============ HOW TO ============ */
.how-section {
  background: #FFFBF0;
  border-top: 1px solid var(--line);
  padding: 80px 6vw 72px;
}

.how-section .section-title {
  text-align: center;
  font-family: 'Apple Garamond', serif;
  font-size: 50px;
  font-weight: 400;
  color: #A1291B;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

/* Timeline row */
.steps-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Each step column */
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 130px;
  text-align: center;
  position: relative;
}

/* Connector between steps */
.step-connector {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding-top: 29px;
  min-width: 40px;
  /* vertically align with circle center (72px / 2 = 36px - half SVG height) */
}

.step-connector svg {
  display: block;
  width: 100%;
  height: 20px;
}

/* Numbered circle */
.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px #A1291B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  position: relative;
  background: #A1291B;
}

.step-circle.active {
  background: var(--black);
}

.step-circle span {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
}

.step-circle.active span {
  color: var(--paper);
}

.step-label {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-desc {
  color: #000000;
  font-size: 16px;
  line-height: 1.65;
  max-width: 160px;
}


/* ============ ARTWORK GUIDELINES ============ */
.guidelines-section {
  background: #FFFBF0;
  padding: 88px 4vw 96px;
}

.guidelines-title {
  text-align: center;
  font-family: 'Apple Garamond', serif;
  padding: -1px 15px 60px;
  font-size: 50px;
  font-weight: 400;
  color: #A1291B;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

/* About Grid Divider */
.about-grid {
  gap: 0;
}

.about-card {
  padding: 20px 30px;
}

.about-card:first-child {}

/* Challenge Grid Divider */
.challenge-grid {
  gap: 0;
}

.challenge-left {
  padding: 48px 30px;
}

.challenge-right {
  padding: 5px 0;
  /* align-items: flex-start; */
  display: block;
}

/* Info Strip Grid Divider */
.info-strip-grid {
  gap: 0;
}

.info-strip-col {
  padding: 48px 30px;
}

.info-strip-col:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

/* Mobile Stack Dividers */
@media (max-width: 1100px) {

  .about-card:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(244, 235, 221, 0.15);
  }

  .challenge-left {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .info-strip-col:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
}

.guidelines-specs-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.spec-card {
  background: #A1291B;
  padding: 24px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  flex: 1 1 0%;
  min-width: 140px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.spec-card.spec-card2 {
  flex: 2.1 1 0%;
  width: auto !important;
}



.spec-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFBF0;
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 1.4;
}

.spec-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 251, 240, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  margin-top: auto;
}

.guidelines-mediums {
  text-align: center;
  margin-bottom: 60px;
}

.guidelines-mediums .g-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2C0503;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.mediums-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.mediums-pills span {
  background: #2C0503;
  border-radius: 100px;
  padding: 8px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #FFFBF0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.guidelines-rules-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.guideline-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.guideline-card2 {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.guideline-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  background: #A1291B;
  margin: 0;
  padding: 14px 18px;
  text-align: center;
  line-height: 1.2;
}

.gridline-card2 h4 {
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #FFFFFF;
  background: #A1291B;
  margin: 0;
  padding: 14px 18px;
  text-align: center;
  line-height: 1.2;
}

/* ============ COURIER SECTION ============ */
.courier-section {
  background: #FFFBF0;
  width: 100%;
  padding-top: 60px;
  position: relative;
}

.courier-title {
  text-align: center;
  font-family: 'Apple Garamond', serif;
  font-size: 50px;
  font-weight: 400;
  color: #A1291B;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}



.courier-content {
  display: flex;
  gap: 56px;
  max-width: 1300px;
  margin: 0 auto 60px;
  padding: 0 20px;
  justify-content: center;
}

.courier-left {
  flex-shrink: 0;
}

.courier-img {
  width: 497px;
  height: 394px;
  object-fit: contain;
  transform: rotate(0deg);
  opacity: 1;
  display: block;
}

.courier-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  max-width: 630px;
}

.courier-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
  margin: 0;
  max-width: 400px;
}

.courier-address-card {
  border: 1.5px solid rgba(161, 41, 27, 0.35);
  border-radius: 8px;
  padding: 28px 15px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.courier-pin-icon {
  width: 62px;
  height: 64px;
  border-radius: 50%;
  background: #9E2418;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.courier-pin-icon svg {
  width: 26px;
  height: 26px;
}

.courier-address-text {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.45;
  color: #000000;
  text-transform: uppercase;
}

.footer-graphic {
  width: 100%;
  aspect-ratio: 2024 / 619.1;
  background: url('../images/Rectangle 18.webp') center top / contain no-repeat;
  background-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.footer-graphic img {
  width: 25%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.g-spec-row .g-key {
  color: rgba(0, 0, 0, 0.6);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.g-spec-row .g-val {
  color: #000000;
  font-weight: 600;
  font-size: 13px;
}

.guidelines-cta {
  max-width: 960px;
  margin: 44px auto 0;
  border: 1px solid #A1291B;
  padding: 36px 40px;
  text-align: center;
  background: rgba(161, 41, 27, 0.04);
}

.guidelines-cta .cta-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.2;
}

.guidelines-cta .cta-title em {
  color: #A1291B;
  font-style: italic;
}

.guidelines-cta .cta-body {
  color: #000000;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 24px;
}

.guidelines-cta .cta-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #A1291B;
  margin-top: 8px;
}

.journy-mobile-img {
  display: none;
}

@media (max-width: 720px) {
  .guidelines-rules-row {
    grid-template-columns: 1fr;
  }
}

/* ============ FOOTER ============ */
footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 30px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(253, 250, 244, 0.4);
  letter-spacing: 0.04em;
}

footer .word {
  font-family: 'Fraunces', serif;
  color: rgba(247, 241, 232, 0.7);
  letter-spacing: 0.1em;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {

  /* Mobile hero banner swap */
  img.hero-desktop-banner {
    display: none !important;
  }

  img.hero-mobile-banner {
    display: block !important;
    width: 100%;
    height: auto !important;
    object-fit: contain;
  }

  /* Override the global hero img height so mobile banner is natural height */
  .hero img {
    height: auto;
  }

  /* The gradient fade-out after (::after) should not be displayed on mobile banner */
  .hero::after {
    display: none;
  }

  .hero-overlay-cta {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: transparent;
    padding: 0;
    width: max-content;
  }

  /* Scroll indicator */
  .scroll-indicator {
    display: flex;
    bottom: 16px;
  }

  .about-grid,
  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .info-strip-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr 1fr;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journey-right {
    display: none !important;
  }

  .journy-mobile-img {
    display: block !important;
    width: 100%;
    height: auto;
  }

  .journey-section {
    padding: 40px 15px 50px;
  }

  .journey-img {
    max-width: 320px;
    margin: 0 auto;
  }

  /* Art travel section stacks on mobile */
  .art-travel-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .art-travel-left {
    width: 100%;
    padding: 0;
  }

  .art-travel-right {
    width: 100%;
    padding: 0;
  }

  .art-travel-section .art-travel-title,
  .how-inline-title,
  .who-participate-title {
    font-size: 35px !important;
  }

  .how-deadline-bar {
    margin: 24px auto 0;
    max-width: 100%;
  }

  .how-step-connector svg {
    height: 38px;
  }

  /* Challenge grid stacks correctly on mobile */
  .challenge-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .who-participate-section {
    padding: 40px 20px 60px;
  }

  .steps-timeline {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-connector {
    padding-top: 0;
    transform: rotate(90deg);
    margin: 6px 0;
  }

  .step-connector svg {
    width: 48px;
  }

  .step-item {
    width: 100%;
    max-width: 280px;
  }

  /* About card padding on mobile */
  .about-card {
    padding: 20px 15px;
  }

  .about-card:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(244, 235, 221, 0.15);
  }

  .courier-section {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 36px;
  }

  .courier-title {
    font-size: 32px !important;
    margin-bottom: 32px;
  }

  .courier-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .courier-right {
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .courier-img {
    width: 100%;
    max-width: 497px;
    height: auto;
    aspect-ratio: 497 / 394;
    margin: 0 auto;
  }

  .courier-desc {
    max-width: 100%;
    font-size: 15px;
    text-align: center;
  }

  .courier-address-card {
    padding: 20px 20px;
    gap: 16px;
    width: 100%;
    text-align: left;
  }

  .courier-pin-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .courier-address-text {
    font-size: 15px;
    line-height: 1.4;
  }

  .challenge-left {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .info-strip-col:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  /* Footer graphic scale */
  .footer-graphic {
    aspect-ratio: auto;
    min-height: 160px;
    background-size: cover;
  }

  .footer-graphic img {
    width: 50%;
  }

  /* Guidelines section padding */
  .guidelines-section {
    padding: 0px 15px 60px;
  }

  /* Criteria section */
  .criteria-section {
    padding: 40px 15px;
  }

  /* Prizes section */
  .prizes-section {
    padding: 50px 15px 60px;
  }

  .prize-2,
  .prize-3,
  .prize-1 {
    max-width: 100%;
  }

  /* Registration form */
  .section {
    padding: 0px 15px 60px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head .eyebrow {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .participate-banner {
    font-size: 30px;
  }

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

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

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

  .campaign-title,
  .challenge-section-title,
  .section-title,
  .guidelines-title,
  .art-travel-title,
  .who-participate-title,
  .criteria-title,
  .prizes-title,
  .about-card .card-eyebrow,
  #register .eyebrow {
    font-size: 32px !important;
    margin-bottom: 20px;
  }

  .prizes-subtitle {
    margin-bottom: 48px;
  }

  .criteria-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .criteria-card {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }

  .prizes-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 360px;
    margin: 0 auto 52px;
  }

  .prize-1 {
    order: 1;
  }

  .prize-2 {
    order: 2;
  }

  .prize-3 {
    order: 3;
  }

  .prize-1 .amt {
    font-size: 76px;
  }

  .prize-card .amt {
    font-size: 48px;
  }

  .prize-1 .prize-art {
    width: 90px;
    height: 135px;
    bottom: -6px;
  }

  .prize-1 .prize-art-left {
    left: -76px;
  }

  .prize-1 .prize-art-right {
    right: -76px;
  }

  .prize-2 .prize-art,
  .prize-3 .prize-art {
    width: 68px;
    height: 102px;
    bottom: -4px;
  }

  .prize-2 .prize-art-left,
  .prize-3 .prize-art-left {
    left: -56px;
  }

  .prize-2 .prize-art-right,
  .prize-3 .prize-art-right {
    right: -56px;
  }

  .more-prizes-title {
    margin-bottom: 32px;
  }

  .more-prizes-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    max-width: 320px;
  }

  .more-prize-item {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .more-prize-item h5 {
    text-align: center;
  }

  .more-prize-item p {
    text-align: center;
  }

  .challenge-left,
  .challenge-right {
    padding: 20px 0;
    width: 100%;
  }

  .challenge-left h3 {
    font-size: 22px;
  }

  .challenge-right {
    order: -1;
    justify-content: center;
  }

  .info-strip {
    padding: 40px 15px;
  }

  .info-strip-col {
    padding: 0;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .submit-row {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .submit-row .btn {
    justify-content: center;
  }

  .submit-row .note {
    max-width: none;
    text-align: center;
  }

  .guidelines-specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .guidelines-rules-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .spec-card {
    min-width: 0;
    padding: 18px;
  }

  .spec-card h4 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  /* Seven Stages of Rice Farming - Mobile View */
  .stages-wrapper {
    margin: 28px auto 10px;
    width: 100%;
  }

  .stages-title {
    margin-bottom: 32px;
  }

  .stages-scroll-wrap {
    overflow-x: visible;
    padding: 0;
  }

  .stages-staircase {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    padding: 0;
  }

  .stage-step {
    flex: none;
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 12px;
    width: 100%;
    position: relative;
    padding-bottom: 24px;
    align-items: start;
  }

  .stage-step:last-child {
    padding-bottom: 0;
  }

  /* Vertical dotted line connecting from step 1 down to step 7 */
  .stage-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    /* 48px num width + 12px column-gap */
    top: 15px;
    /* bottom of stage-bar */
    bottom: -4px;
    /* reaches top of next step's stage-bar */
    border-left: 1.5px dotted #B85D43;
    pointer-events: none;
  }

  .stage-num {
    grid-column: 1;
    grid-row: 1 / span 2;
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0;
    text-align: right;
    padding-right: 2px;
  }

  .stage-bar {
    grid-column: 2;
    grid-row: 1;
    height: 12px;
    margin-top: 3px;
    border-radius: 0;
  }

  .stage-drop {
    display: none !important;
  }

  .stage-label {
    grid-column: 2;
    grid-row: 2;
    margin-top: 8px;
    padding-left: 8px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    white-space: normal;
  }

  /* Progressive bar widths matching design */
  .step-1 .stage-bar {
    width: 44%;
  }

  .step-2 .stage-bar {
    width: 54%;
  }

  .step-3 .stage-bar {
    width: 64%;
  }

  .step-4 .stage-bar {
    width: 74%;
  }

  .step-5 .stage-bar {
    width: 84%;
  }

  .step-6 .stage-bar {
    width: 92%;
  }

  .step-7 .stage-bar {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 10px 4vw;
  }

  .nav .brand img {
    height: 48px;
  }

  .nav .cta-mini {
    font-size: 11px;
  }

  .hero-register-btn {
    font-size: 12px;
    padding: 12px 20px;
  }

  .hero-overlay-cta {
    bottom: 70px;
  }

  .scroll-mouse {
    width: 44px;
    height: 44px;
  }

  .guidelines-specs-row {
    grid-template-columns: 1fr;
  }

  .guidelines-cta {
    padding: 24px 16px;
  }

  .guidelines-cta .cta-title {
    font-size: 20px;
  }

  .guideline-card h4 {
    font-size: 17px;
    padding: 12px 14px;
  }

  .guideline-card2 h4 {
    padding: 12px 14px;
    font-size: 17px;
  }

  .guideline-list li {
    padding: 12px 14px;
    font-size: 12.5px;
    gap: 10px;
  }






  .guideline-list li::before {
    width: 18px;
    height: 18px;
    min-width: 18px;
    background-size: 10px 10px;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: 24px 16px;
  }

  .prize-1 .amt {
    font-size: 56px;
  }

  .prize-card .amt {
    font-size: 36px;
  }

  .prize-1 .prize-art {
    width: 100px;
    height: 99px;
    bottom: -17px;
  }

  .prize-1 .prize-art-left {
    left: -58px;
  }

  .prize-1 .prize-art-right {
    right: -58px;
  }

  .prize-2 .prize-art,
  .prize-3 .prize-art {
    width: 75px;
    height: 112px;
    bottom: -20px;
  }

  .prize-2 .prize-art-left,
  .prize-3 .prize-art-left {
    left: -44px;
  }

  .prize-2 .prize-art-right,
  .prize-3 .prize-art-right {
    right: -44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ============ GUIDELINE LIST STYLES ============ */
.guideline-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.guideline-list2 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.guideline-list li {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 48px;
  margin: 0;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #2C0503;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.guideline-list.guideline-list2 li {
  font-weight: 400 !important;
}


.guideline-list li:last-child {
  border-bottom: none;
}

.guideline-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background-color: #A1291B;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
  display: block;
}

/* ============ GUIDELINES STANDALONE MODE ============ */
body.guidelines-mode>section:not(.guidelines-section):not(.courier-section),
body.guidelines-mode>div:not(.footer-graphic):not(.guidelines-cta) {
  display: none !important;
}

body.guidelines-mode .courier-title,
body.guidelines-mode .courier-content {
  display: none !important;
}

body.guidelines-mode .hero,
body.guidelines-mode .journey-section,
body.guidelines-mode .about-section,
body.guidelines-mode .challenge-section,
body.guidelines-mode .art-travel-section,
body.guidelines-mode .who-participate-section,
body.guidelines-mode .participate-banner,
body.guidelines-mode .criteria-section,
body.guidelines-mode .prizes-section,
body.guidelines-mode .how-section,
body.guidelines-mode #register {
  display: none !important;
}