/* ==========================================================================
   CULTIVATION-DESKTOP.CSS
   Theme: Clinical, High-Tech, Organic
   ========================================================================== */

.cultivation-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url(/assets/heros/cultivation_hero_desktop.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 25rem;
}

.cultivation-intro {
  background-color: #000;
  padding: 8rem 0 4rem;
  text-align: center;
  margin: 0 auto; 
}

.section-title {
  font-family: var(--ff-headers);
  font-size: 3.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.process-section {
  padding: 10rem 0;
  /* A deep Charcoal Gray */
  background-color: #121212; 
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.process-section.alt-bg {
  /* A slightly lighter Slate Gray for contrast */
  background-color: #1c1c1c; 
}

.step-badge {
  font-family: var(--ff-headers);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: .5rem; 
  position: relative;
  z-index: 0;
  /* Default ghost color for #0f1113 sections */
  color: rgba(255, 255, 255, 0.203); 
}

/* Adjusting number visibility for the .alt-bg sections */
.alt-bg .step-badge {
  color: rgba(134, 130, 130, 0.267);
}

.process-title {
  font-family: var(--ff-headers);
  font-size: 3rem;
  color: var(--signature-orange);
  text-transform: uppercase;
  margin-bottom: 3rem;
  position: relative;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.narrow-container {
  max-width: var(--container-width-desktop, 100rem); 
  margin: 0 auto;
  padding: 0 2rem; 
}

/* Clearfix to prevent floated images from bleeding into the tech list */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.copy-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 2rem;
}

/* Image Shrunk and Floated Left (Default) */
.process-image-wrapper {
  float: left;
  width: 28rem; /* Reduced from 38rem */
  margin: 0.5rem 3rem 1.5rem 0; /* Tighter gap to match the smaller photo */
}

/* Alternating Logic: Target even sections, float right */
.process-section:nth-of-type(even) .process-image-wrapper {
  float: right;
  margin: 0.5rem 0 1.5rem 3rem; /* Swaps the margin to the left side */
}

.tech-frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem; 
  border-radius: 2px;
  width: 100%;
}

.tech-frame::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 20px; height: 20px;
  border-top: 3px solid var(--signature-orange);
  border-left: 3px solid var(--signature-orange);
}

.tech-frame::before {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 20px; height: 20px;
  border-bottom: 3px solid var(--signature-orange);
  border-right: 3px solid var(--signature-orange);
}

.tech-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3; 
  object-fit: cover;   
  object-position: center; 
  filter: contrast(1.1) saturate(0.9); 
  transition: all 0.5s ease;
}

.tech-frame:hover img {
  filter: contrast(.8) saturate(.8);
}

/* --- TECH LIST (Bottom) --- */
.tech-list {
  clear: both; /* Ensures it always drops below the floated image and text */
  list-style: none;
  margin-top: 3rem;
  display: flex;
  flex-direction: row; 
  flex-wrap: wrap; 
  justify-content: center;
  gap: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.tech-list li {
  font-size: 1.4rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-list i {
  color: var(--signature-orange);
  font-size: 1.8rem;
  width: 30px; 
  text-align: center;
}

/* --- RE-INCLUDE PETITION STYLES --- */
.petition-wrapper {
  padding: 10rem 0;
  background: radial-gradient(circle at top, #111 0%, #000 100%);
  border-top: 1px solid rgba(248, 194, 93, 0.2);
  display: grid;
  place-items: center;
}

.petition-intro {
  margin-bottom: 5rem;
  text-align: center; 
}

.petition-header {
  font-family: var(--ff-headers);
  font-size: 5rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}

.petition-card-monolith {
  width: 100%;
  max-width: 80rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--signature-orange);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.6);
  margin-bottom: 6rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.petition-card-monolith .card-header {
  background: var(--signature-orange);
  padding: 1.5rem;
}

.petition-card-monolith .card-header h3 {
  color: #000;
  font-family: var(--ff-headers);
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: 2px;
}

.petition-card-monolith .card-body {
  padding: 5rem 4rem;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.petition-card-monolith .progress-bar {
  width: 100%;
  height: 1.5rem;
  background: #222;
  border-radius: 5rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.petition-card-monolith .progress-fill {
  background: linear-gradient(90deg, var(--signature-orange), var(--fc-accent-red));
  box-shadow: 0 0 15px var(--fc-accent-red);
  height: 100%;
  border-radius: 5rem;
}

.petition-card-monolith .sub-text {
  font-size: 1.4rem;
  color: var(--fc-muted);
  margin-bottom: 4rem;
}

.btn-petition {
  display: inline-flex; 
  align-items: center;
  gap: 1rem;
  padding: .6rem 2rem;
  font-family: var(--ff-headers);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.2;
  color: #000;
  background-color: var(--signature-orange);
  border-radius: 5rem; 
  transition: var(--transition-smooth, all 0.3s ease); 
  box-shadow: 0 0.4rem 1.5rem rgba(248, 194, 93, 0.3);
  margin-top: 2rem; 
}

.btn-petition:hover {
  transform: translateY(-0.3rem);
  background-color: #fff; 
  box-shadow: 0 0.8rem 2.5rem rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 1.5rem 4rem;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}

.btn-petition:hover i {
  transform: rotate(-15deg) scale(1.1);
  transition: transform 0.3s ease;
}