/* ==========================================================================
   Guimaras Wonder's Farm — page-level sections
   ========================================================================== */

/* ---- Hero --------------------------------------------------------------- */

.gwf-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.gwf-hero__copy { max-width: 640px; }
.gwf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: 32px;
  max-width: none;
}
.gwf-hero__plate { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
.gwf-hero__plate img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Split: media beside argument --------------------------------------- */

.gwf-split {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.gwf-split__media { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; }
.gwf-split__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Process steps ------------------------------------------------------
   These ARE a genuine sequence, so the numbering carries information. Step 2
   is marked apart because it is legally mandatory, which is the one thing that
   makes numbering here better than four undifferentiated cards. */

.gwf-steps {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px 32px;
  counter-reset: none;
}
.gwf-steps > li { position: relative; padding-top: 20px; border-top: 1px solid var(--gwf-hairline-dark); }
.gwf-steps > li.is-required { border-top-color: var(--gwf-gold); border-top-width: 3px; }
.gwf-steps__n {
  display: block;
  font-size: 2rem;
  color: var(--gwf-gold);
  line-height: 1;
  margin-bottom: 12px;
}
.gwf-steps h3 { color: var(--gwf-bone); margin-bottom: 8px; }
.gwf-steps p { font-size: var(--gwf-small); line-height: 1.65; }
.gwf-steps__tag {
  display: inline-block;
  font-family: var(--gwf-display);
  font-variation-settings: 'wdth' var(--gwf-w-condensed), 'wght' 700;
  font-size: var(--gwf-micro);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: var(--gwf-gold);
  color: var(--gwf-ink) !important;
  padding: 3px 9px;
  border-radius: 3px;
  margin: 0 0 10px;
}

/* ---- Pull quote ---------------------------------------------------------- */

.gwf-quote {
  margin: 28px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--gwf-gold);
}
.gwf-quote p {
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
}
.gwf-quote cite {
  font-family: var(--gwf-display);
  font-variation-settings: 'wdth' var(--gwf-w-condensed), 'wght' 700;
  font-style: normal;
  font-size: var(--gwf-micro);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gwf-green);
}

/* ---- Portrait in the paperwork rail -------------------------------------- */

.gwf-portrait { width: 100%; aspect-ratio: 3 / 4; overflow: hidden; }
.gwf-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }

/* ---- Contact band --------------------------------------------------------- */

.gwf-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.gwf-contact__details { margin: 0; }
.gwf-contact__details dt {
  font-family: var(--gwf-display);
  font-variation-settings: 'wdth' var(--gwf-w-condensed), 'wght' 700;
  font-size: var(--gwf-micro);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gwf-gold);
  margin-bottom: 4px;
}
.gwf-contact__details dd {
  margin: 0 0 20px;
  color: var(--gwf-bone);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.gwf-contact__details dd:last-child { margin-bottom: 0; }
.gwf-contact__details dd a {
  color: var(--gwf-bone);
  text-decoration: none;
  font-family: var(--gwf-display);
  font-variation-settings: 'wdth' var(--gwf-w-normal), 'wght' 800;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.gwf-contact__details dd a:hover { text-decoration: underline; }

/* ---- Responsive ----------------------------------------------------------- */

@media (max-width: 980px) {
  .gwf-hero__grid { gap: 40px; }
}
@media (max-width: 820px) {
  .gwf-hero__grid,
  .gwf-split,
  .gwf-contact {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .gwf-hero__plate { max-width: 520px; }
  .gwf-split__media { max-width: 520px; }
}
