/* ============================================================
   Caliber Turf Company — /trade/why-us/ page styles
   Rebuilt from Elementor post-55 + templates 618 (header) / 787 (footer).
   Standalone microsite look: does NOT use the Green Guard header/footer.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #1B1B1B;
  background: #fff;
}

img { max-width: 100%; height: auto; border: 0; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, p { margin: 0; }

.ct-inner { max-width: 1600px; margin: 0 auto; width: 100%; }

/* ---------- Buttons ---------- */
.ct-btn {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 3px;
  color: #fff;
  fill: #fff;
  text-align: center;
  transition: all .3s;
  cursor: pointer;
}
.ct-btn--orange { background-color: #E04F1B; }
.ct-btn--pill {
  background-color: #E04F1B;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  padding: 20px 45px;
}
.ct-btn--pill:hover,
.ct-btn--pill:focus { background-color: #E04F1B; color: #FFFFFF; }

/* ---------- Header (template 618) ---------- */
.ct-header { background-color: #232323; padding: 2rem 0; }
.ct-header__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.ct-logo { display: block; width: 23%; max-width: 23%; text-align: center; font-size: 0; }
.ct-logo img { max-width: 100%; height: auto; }

.ct-nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
.ct-nav a {
  display: block;
  padding: 13px 20px;
  color: #FFFFFF;
  fill: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}
.ct-nav a:hover { color: #FFFFFF; }

.ct-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: .25em;
  font-size: 22px;
  border: 0;
  border-radius: 3px;
  background-color: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
}
.ct-menu-toggle svg { width: 1em; height: 1em; fill: currentColor; display: block; }
.ct-menu-toggle .ct-icon-close { display: none; }
.ct-menu-toggle[aria-expanded="true"] .ct-icon-open { display: none; }
.ct-menu-toggle[aria-expanded="true"] .ct-icon-close { display: block; }

.ct-nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.ct-nav-dropdown ul { list-style: none; margin: 0; padding: 0; }
.ct-nav-dropdown a {
  display: block;
  padding: 13px 20px;
  color: #1B1B1B;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.ct-header.is-open .ct-nav-dropdown { display: block; }
.ct-header--relative { position: relative; }

@media (max-width: 1024px) {
  .ct-nav { display: none; }
  .ct-header__inner { min-height: 63px; }
  .ct-menu-toggle {
    display: flex;
    align-self: flex-start;
    margin: 4px 47px 0 0;
    font-size: 15px;
    padding: 5px;
  }
}

/* ---------- Shared bits ---------- */
.wu-divider { width: 100%; padding: 7px 0; font-size: 0; }
.wu-divider span {
  display: inline-block;
  width: 32%;
  border-top: 3.5px solid #E04F1B;
}
.wu-divider--center { text-align: center; }
.wu-divider--center span { width: 18%; }

/* ---------- Hero (640ee476) ---------- */
.wu-hero {
  position: relative;
  background-image: url("/assets/images/bg-green.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0F2A1D;
  opacity: .65;
}
/* The hero title is the page's h1 (it renders exactly as the original's
   h2 did — the `h1, h2, h3, p { margin: 0 }` reset above already covers the
   tag's default margin, and every type property is set here). */
.wu-hero h1,
.wu-hero h2 {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.15em;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 1024px) {
  .wu-hero { min-height: 246px; }
  .wu-hero h1, .wu-hero h2 { font-size: 1.8rem; }
}
@media (max-width: 767px) {
  .wu-hero { min-height: 10rem; padding: 0 1rem; }
  .wu-hero h1, .wu-hero h2 { font-size: 1.6rem; }
}

/* ---------- Two-column splits ---------- */
.wu-split { padding: 60px 20px 80px; }
.wu-split__inner { display: flex; flex-direction: row; gap: 10px; }
.wu-split--reverse .wu-split__inner { flex-direction: row-reverse; }
.wu-split__col {
  flex: 1 1 0;
  width: 50%;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
}
.wu-split__col--text { gap: 20px; align-items: flex-start; }
.wu-split__col--media { text-align: center; }
.wu-split__col--media img,
.wu-fiber__col--media img,
.wu-pe__col--media img { display: block; margin: 0 auto; }

.wu-split h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2em;
  text-align: start;
}
.wu-body { font-size: 16px; line-height: 1.8em; }
.wu-body p { margin: 1em 0; }

/* intro (46043dff) — white, text left / image right */
.wu-intro .wu-body { color: #000000; }

/* spec weight (320aeee) — dark #222222, image left / text right */
.wu-spec { background-color: #222222; }
.wu-spec h2 { color: #FFFFFF; }
.wu-spec .wu-body { color: #ADADAD; }

@media (max-width: 1024px) {
  .wu-split__col { padding: 0 20px; }
}
@media (max-width: 767px) {
  .wu-split { padding: 3rem 1rem; }
  .wu-split__inner, .wu-split--reverse .wu-split__inner { flex-direction: row; flex-wrap: wrap; }
  .wu-split__col { flex: 0 0 100%; width: 100%; }
  .wu-split__col--text { align-items: center; }
  .wu-split__col--text > * { width: 100%; }
  .wu-spec h2 { text-align: center; font-size: 1.5rem; }
  .wu-spec .wu-divider { text-align: center; }
}

/* ---------- Face vs Total Weight (250b78c2) ---------- */
.wu-weights {
  background-color: #E7E7E7;
  padding: 90px 20px;
}
.wu-weights__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.wu-weights h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2em;
  color: #000000;
  text-align: center;
}
.wu-weights__intro { font-size: 17px; line-height: 1.7em; color: #000000; }
.wu-weights__intro p { margin: 1em 0; text-align: center; }
.wu-cards {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding-top: 20px;
}
.wu-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #000000;
  border: 1px solid #2E7D32;
  border-radius: 12px;
  padding: 40px 35px;
}
.wu-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF;
}
.wu-card p { font-size: 16px; line-height: 1.8em; color: #ADADAD; margin: 1em 0; }
.wu-weights__outro { font-size: 16px; line-height: 1.8em; color: #000000; }
.wu-weights__outro p { margin: 1em 0; }

@media (max-width: 767px) {
  .wu-weights h2 { font-size: 1.5rem; }
  .wu-cards { flex-wrap: wrap; }
  .wu-card { flex: 0 0 100%; }
}

/* ---------- Low-grade fiber (6fe4879c) — black ---------- */
.wu-fiber { background-color: #000000; padding: 90px 20px; }
.wu-fiber__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px;
}
.wu-fiber__col { flex: 1 1 0; width: 50%; padding: 0 30px; }
.wu-fiber__col--text { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.wu-fiber__col--media { text-align: center; }
.wu-fiber h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2em;
  color: #FFFFFF;
  text-align: start;
}
.wu-fiber .wu-body { color: #ADADAD; }

@media (max-width: 1024px) {
  .wu-fiber__col { padding: 0 20px; }
}
@media (max-width: 767px) {
  .wu-fiber { padding: 3rem 1rem; }
  .wu-fiber__inner { flex-direction: column-reverse; gap: 60px; }
  .wu-fiber__col { flex: 0 0 auto; width: 100%; }
  .wu-fiber h2 { text-align: center; font-size: 1.5rem; }
  .wu-fiber .wu-divider { text-align: center; }
  .wu-fiber__col--text > * { width: 100%; }
}

/* ---------- Why pure PE (11acf5bb) — white ---------- */
.wu-pe { padding: 90px 20px; }
.wu-pe__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.wu-pe h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2em;
  color: #000000;
  text-align: center;
}
.wu-pe__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 50px;
  padding-top: 20px;
}
.wu-pe__col { flex: 1 1 0; width: 50%; padding: 0 30px; }
.wu-pe__col--media { text-align: center; }
.wu-pe__col--text { font-size: 16px; line-height: 1.8em; color: #000000; }
.wu-pe__col--text p { margin: 1em 0; }

@media (max-width: 1024px) {
  .wu-pe__col { padding: 0 20px; }
}
@media (max-width: 767px) {
  .wu-pe { padding: 3rem 1rem; }
  .wu-pe h2 { font-size: 1.5rem; }
  .wu-pe__row { flex-wrap: wrap; }
  .wu-pe__col { flex: 0 0 100%; width: 100%; }
}

/* ---------- Jobs & reputation (36fb0fe4) — #2C2C2C ---------- */
.wu-jobs { background-color: #2C2C2C; padding: 100px 20px; }
.wu-jobs__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wu-jobs h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2em;
  color: #FFFFFF;
  text-align: center;
}
.wu-jobs__body { font-size: 17px; line-height: 1.8em; color: #FFFFFF; text-align: start; }
.wu-jobs__body p { margin: 1em 0; }

@media (max-width: 767px) {
  .wu-jobs { padding: 3rem 1rem; }
  .wu-jobs h2 { font-size: 1.5rem; }
}

/* ---------- CTA (3f632d30) ---------- */
.wu-cta {
  position: relative;
  background-color: #000000;
  padding: 100px 30px;
}
.wu-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0F2A1D;
  opacity: .75;
}
.wu-cta__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.wu-cta h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2em;
  color: #FFFFFF;
  text-align: center;
}
.wu-cta .wu-divider--center span { border-top-color: #4CAF50; }
.wu-cta__body { font-size: 17px; line-height: 1.75em; color: #FFFFFF; }
.wu-cta__body p { margin: 1em 0; text-align: center; }

@media (max-width: 767px) {
  .wu-cta { padding: 3rem 1rem; }
  .wu-cta h2 { font-size: 1.5rem; }
}

/* ---------- Footer (template 787) ---------- */
.ct-footer { background-color: #000000; padding: 5rem 1rem; }
.ct-footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
.ct-footer__col { flex: 1 1 0; padding: 0 30px; }
.ct-footer__col--logo { text-align: center; }
.ct-footer__col--logo img { max-width: 100%; display: block; margin: 0 auto; }
.ct-footer table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #FFFFFF;
}
.ct-footer table td { padding: 2px 0; vertical-align: middle; line-height: 1.5; }
.ct-footer table a { color: #FFFFFF; }
.ct-footer__links p {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 1em 0;
}
.ct-footer__links a { color: #FFFFFF; }

@media (max-width: 1024px) {
  .ct-footer__col { padding: 0 20px; }
}
@media (max-width: 767px) {
  .ct-footer__inner { flex-direction: column; }
  .ct-footer__col { width: 100%; padding: 0 24px; }
  .ct-footer__col--logo { padding: 0; }
  .ct-footer__col--logo img { width: 90%; }
  /* the original why-us page renders the footer slightly looser than /trade/ */
  .ct-footer table td { line-height: 24px; }
  .ct-footer__links p { margin: 1.2em 0; }
}
