/* === 37B&B — logo size (Readdy parity) ============================== */
.site-header__logo,
.site-header__logo a,
.wp-block-site-logo,
.wp-block-site-logo a { line-height: 0; }

.site-header__logo img,
.site-header__logo svg,
.wp-block-site-logo img {
  max-height: 88px !important;
  width: auto;
  height: auto;
  display: block;
}
.site-header__logo .custom-logo-link { max-width: none !important; }

@media (max-width: 768px) {
  .site-header__logo img,
  .site-header__logo svg,
  .wp-block-site-logo img { max-height: 64px !important; }
}

/* === 37B&B — hero overlay vignette + text legibility ================ */
.section--hero .wp-block-cover__background {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 35%,
    rgba(0,0,0,0.45) 65%,
    rgba(0,0,0,0.85) 100%
  ) !important;
  opacity: 1 !important;
}

.section--hero .hero__headline {
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.section--hero .hero__sub {
  color: #fff !important;
  font-weight: 400 !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.hero__scroll,
.hero__scroll-label {
  color: var(--wp--preset--color--brand-accent) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
/* === 37B&B — polaroid photo strip (positional target, no class needed) === */
.section--hire-custom .wp-block-columns {
  max-width: 1000px;
  margin: 0 auto 3rem !important;
  gap: 1.5rem !important;	
	margin-top:30px !important;
}
.section--hire-custom .wp-block-columns .wp-block-column {
  display: flex;
  justify-content: center;
}
.section--hire-custom .wp-block-columns .wp-block-image {
  background: #fff;
  padding: 0.75rem 0.75rem 1.25rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  max-width: 280px;
  margin: 0 !important;
  transition: transform 0.25s ease;
}
.section--hire-custom .wp-block-columns .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.section--hire-custom .wp-block-columns .wp-block-column:nth-child(1) .wp-block-image { transform: rotate(-3deg); }
.section--hire-custom .wp-block-columns .wp-block-column:nth-child(2) .wp-block-image { transform: translateY(-12px); }
.section--hire-custom .wp-block-columns .wp-block-column:nth-child(3) .wp-block-image { transform: rotate(3deg); }
.section--hire-custom .wp-block-columns .wp-block-column:nth-child(1) .wp-block-image:hover { transform: rotate(-3deg) translateY(-6px); }
.section--hire-custom .wp-block-columns .wp-block-column:nth-child(2) .wp-block-image:hover { transform: translateY(-18px); }
.section--hire-custom .wp-block-columns .wp-block-column:nth-child(3) .wp-block-image:hover { transform: rotate(3deg) translateY(-6px); }
@media (max-width: 768px) {
  .section--hire-custom .wp-block-columns { gap: 0.75rem !important; }
  .section--hire-custom .wp-block-columns .wp-block-image { padding: 0.5rem 0.5rem 1rem; }
}
/* === 37B&B — hire-custom feature grid (3×2 inline icon+label) ======= */
.hire-features {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 2.5rem !important;
  max-width: 1100px;
  margin-inline: auto !important;
  margin-block: 0 !important;
  padding: 0;
}
.hire-feature {
  display: flex !important;
  align-items: center;
  gap: 0.9rem;
  text-align: left;
  padding: 0.5rem 0 !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0;
  height: auto;
}
.hire-feature__icon {
  font-size: 1.5rem;
  margin: 0 !important;
  flex: 0 0 auto;
  color: var(--wp--preset--color--brand-accent);
}
.hire-feature h4 {
  margin: 0 !important;
  font-size: 1rem;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hire-features { grid-template-columns: repeat(2, 1fr); gap: 1rem 1.5rem !important; }
}
@media (max-width: 480px) {
  .hire-features { grid-template-columns: 1fr; }
}
/* === 37B&B — craft-steps horizontal layout (icon left, text right) === */
.craft-steps .craft-step {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 1.25rem !important;
  padding: 1.25rem 0 !important;
}

/* Kill the stacked ::before number — we move it inline with the title below */
.craft-steps .craft-step::before {
  content: none !important;
  display: none !important;
}

/* Big outlined icon on the left — no circular amber badge */
.craft-steps .craft-step__icon {
  background: transparent !important;
  color: var(--wp--preset--color--black) !important;
  width: auto !important;
  height: auto !important;
  min-width: 2.25rem;
  border-radius: 0 !important;
  font-size: 2rem !important;
  line-height: 1;
  flex: 0 0 2.5rem !important;
  justify-content: flex-start !important;
  padding-top: 0.1rem;
}

/* Text column — number renders inline before the title */
.craft-steps .craft-step__text { flex: 1 1 auto; min-width: 0; }
.craft-steps .craft-step__title {
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 700;
  font-size: 1.0625rem;
  margin: 0 0 0.25rem 0 !important;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--wp--preset--color--black);
}
.craft-steps .craft-step__title::before {
  content: counter(craftstep, decimal-leading-zero);
  color: var(--wp--preset--color--brand-accent);
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.95em;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex: 0 0 auto;
}
.craft-steps .craft-step__text p {
  margin: 0;
  color: var(--wp--preset--color--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}
/* === 37B&B — final-cta trust badges (3-col horizontal) ============= */
.trust-badges {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 2rem;
  max-width: 640px;
  margin: 1.5rem auto 0 !important;
  padding: 0;
  align-items: start;
}
.trust-badges__item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.trust-badges__icon {
  margin: 0 !important;
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  color: var(--wp--preset--color--brand-accent);
}
.trust-badges__item p {
  margin: 0;
  color: #fff;
  font-size: 0.9375rem;
}
@media (max-width: 480px) {
  .trust-badges { grid-template-columns: 1fr; gap: 1rem; max-width: 280px; }
}
/* === 37B&B — center all hero CTA buttons (portfolio hero orphan fix) === */
.section--hero .wp-block-buttons {
  justify-content: center !important;
  gap: 1rem;
}
/* === 37B&B — portfolio cards hover-reveal overlay =================== */

/* Card: image-filling canvas instead of image-on-top */
.section--portfolio-grid .portfolio-grid {
  grid-auto-rows: auto !important;
}
.section--portfolio-grid .portfolio-card {
  background: #1a1a1a !important;
  border: 0 !important;
  position: relative;
  overflow: hidden;
  display: block !important;
  min-height: 360px;
  cursor: pointer;
}
.section--portfolio-grid .portfolio-card--wide { min-height: 380px; }
.section--portfolio-grid .portfolio-card--tall { min-height: 740px; }

/* Image fills the card */
.section--portfolio-grid .portfolio-card__image {
  position: absolute !important;
  inset: 0;
  margin: 0;
  z-index: 0;
}
.section--portfolio-grid .portfolio-card__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.section--portfolio-grid .portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.06);
}

/* Dark gradient floor that intensifies on hover */
.section--portfolio-grid .portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.80) 100%);
  z-index: 1;
  pointer-events: none;
  transition: background 0.35s ease;
}
.section--portfolio-grid .portfolio-card:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.90) 100%);
}

/* Keep the category tag floating on top */
.section--portfolio-grid .portfolio-card__tag { z-index: 3 !important; }

/* Body overlaid at the bottom */
.section--portfolio-grid .portfolio-card__body {
  position: absolute !important;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1.5rem !important;
  z-index: 2;
  color: #fff;
}

/* Title — always visible */
.section--portfolio-grid .portfolio-card__title {
  margin: 0 !important;
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  transition: transform 0.35s ease;
}
.section--portfolio-grid .portfolio-card:hover .portfolio-card__title {
  transform: translateY(-2px);
}

/* Client + description — hidden until hover, slide + fade in */
.section--portfolio-grid .portfolio-card__client,
.section--portfolio-grid .portfolio-card__desc {
  opacity: 0;
  transform: translateY(12px);
  max-height: 0;
  overflow: hidden;
  margin: 0 !important;
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease, margin 0.35s ease;
}
.section--portfolio-grid .portfolio-card:hover .portfolio-card__client,
.section--portfolio-grid .portfolio-card:hover .portfolio-card__desc {
  opacity: 1;
  transform: translateY(0);
  max-height: 200px;
}

/* Client line — amber, sits above title, appears first */
.section--portfolio-grid .portfolio-card__client {
  color: var(--wp--preset--color--brand-accent) !important;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  order: -1;
}
.section--portfolio-grid .portfolio-card:hover .portfolio-card__client {
  margin: 0 0 0.35rem 0 !important;
  transition-delay: 40ms;
}

/* Description — body copy, appears last */
.section--portfolio-grid .portfolio-card__desc {
  font-size: 0.875rem !important;
  line-height: 1.5;
  color: rgba(255,255,255,0.85) !important;
}
.section--portfolio-grid .portfolio-card:hover .portfolio-card__desc {
  margin: 0.6rem 0 0 0 !important;
  transition-delay: 100ms;
}

/* Flex-order trick: put client ABOVE the title inside the body */
.section--portfolio-grid .portfolio-card__body {
  display: flex;
  flex-direction: column;
}

/* Faux "— VIEW BUILD" link that appears last on hover */
.section--portfolio-grid .portfolio-card__body::after {
  content: "— VIEW BUILD";
  display: inline-block;
  align-self: flex-start;
  margin-top: 0.75rem;
  color: var(--wp--preset--color--brand-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease, margin 0.35s ease;
}
.section--portfolio-grid .portfolio-card:hover .portfolio-card__body::after {
  opacity: 1;
  transform: translateY(0);
  max-height: 30px;
  margin-top: 0.75rem;
  transition-delay: 160ms;
}

@media (max-width: 768px) {
  .section--portfolio-grid .portfolio-card,
  .section--portfolio-grid .portfolio-card--wide { min-height: 320px; }
  .section--portfolio-grid .portfolio-card--tall { min-height: 420px; }
}
/* === 37B&B — portfolio stats bar full-bleed ======================== */
.section--portfolio-grid .portfolio-stats {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  box-sizing: border-box;
}

/* Safety net: stop the 100vw from causing a horizontal scrollbar
   on some browsers that include scrollbar width in 100vw */
html, body { overflow-x: clip; }
/* === 37B&B — fix pathway card numbering on portfolio page (01 / 02 / 03) === */
.pathway-cards { counter-reset: pathway; }
/* === 37B&B — portfolio-cta trust badges (4-in-a-row override) ======= */
.trust-badges.trust-badges--4 {
  grid-template-columns: repeat(4, 1fr) !important;
  max-width: 1000px !important;
  gap: 1.5rem 3rem !important;
  margin-top: 2.75rem !important;
}

@media (max-width: 768px) {
  .trust-badges.trust-badges--4 {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 480px !important;
    gap: 1.25rem 1.5rem !important;
  }
}
@media (max-width: 480px) {
  .trust-badges.trust-badges--4 {
    grid-template-columns: 1fr !important;
    max-width: 280px !important;
  }
}
/* === 37B&B — Custom Builds "Straight From The Workshop" masonry grid === */

/* Turn the flat wp:group into a 3-col grid with tall cards spanning 2 rows */
.section--build-gallery .build-gallery__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 1.25rem;
}

/* Tall cards take two rows — lands card 1 top-left over rows 1–2,
   and card 4 auto-fills (row 2–3, col 2) for the offset masonry look */
.section--build-gallery .gallery-card--tall {
  grid-row: span 2;
  min-height: 0 !important; /* let grid sizing win over inline min-height:640 */
}

.section--build-gallery .gallery-card {
  min-height: 0 !important; /* same for the 300px cards */
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.section--build-gallery .gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px -20px rgba(0,0,0,0.55);
}

/* Image fills the card and lifts slightly on hover */
.section--build-gallery .gallery-card .wp-block-cover__image-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.section--build-gallery .gallery-card:hover .wp-block-cover__image-background {
  transform: scale(1.05);
}

/* Stronger gradient floor so the title always reads */
.section--build-gallery .gallery-card .wp-block-cover__background {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.15) 100%
  ) !important;
  opacity: 1 !important;
}

/* Pin the tag to the top, the title to the bottom */
.section--build-gallery .gallery-card .wp-block-cover__inner-container {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1.75rem;
  z-index: 2;
}

.section--build-gallery .gallery-card__tag {
  margin: 0;
  align-self: flex-start;
}

.section--build-gallery .gallery-card__title {
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
/* === 37B&B — Custom Builds "The Process" cards === */

/* Section title + intro — they're rendering pale on the warm surface */
.section--build-process .section__title {
  color: #111 !important;
}
.section--build-process .section__title + p,
.section--build-process > p {
  color: #4a4a4a !important;
}

/* 3-col grid */
.section--build-process .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  counter-reset: process-step;
}

/* The card */
.section--build-process .process-card {
  counter-increment: process-step;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 18px 40px -28px rgba(0,0,0,0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Huge faded ghost "01" in the top-right corner */
.section--build-process .process-card__num {
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(212, 143, 59, 0.18); /* amber, very faded */
  pointer-events: none;
}

/* Dark icon badge, amber icon */
.section--build-process .process-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: #1a1a1a;
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
}

/* Inject "STEP 01" eyebrow before the title */
.section--build-process .process-card__title::before {
  content: "STEP " counter(process-step, decimal-leading-zero);
  display: block;
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Title — bold black */
.section--build-process .process-card__title {
  color: #111 !important;
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Body — mid-grey, readable */
.section--build-process .process-card__body {
  color: #4a4a4a !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  flex: 1; /* pushes meta to the bottom */
}

/* Thin amber rule + amber meta line, bottom of card */
.section--build-process .process-card__meta {
  position: relative;
  margin: 0;
  padding-left: 2rem;
  color: var(--wp--preset--color--brand-accent, #d48f3b) !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}
.section--build-process .process-card__meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 2px;
  background: var(--wp--preset--color--brand-accent, #d48f3b);
  transform: translateY(-50%);
}

/* Tablet: 2 cols */
@media (max-width: 900px) {
  .section--build-process .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 col */
@media (max-width: 600px) {
  .section--build-process .process-grid {
    grid-template-columns: 1fr;
  }
}
/* === 37B&B — Custom Builds closing CTA trust strip (4 across) === */

.section--page-cta .trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.section--page-cta .trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.section--page-cta .trust-strip__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 143, 59, 0.15);
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.section--page-cta .trust-strip__item p {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* Tablet: 2×2 */
@media (max-width: 700px) {
  .section--page-cta .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
/* Tablet: drop to 2 columns, tall cards still span 2 rows */
@media (max-width: 900px) {
  .section--build-gallery .build-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }
}

/* Mobile: single column, all cards equal height, cancel the span */
@media (max-width: 600px) {
  .section--build-gallery .build-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .section--build-gallery .gallery-card--tall {
    grid-row: span 1;
  }
}

/* === 37B&B — About page "Meet Matt" section === */

/* Pull quote — left amber bar, dark italic text */
.section--meet-matt .meet-matt__quote {
  margin: 0 0 2rem;
  padding: 0.25rem 0 0.25rem 1.5rem;
  border-left: 4px solid var(--wp--preset--color--brand-accent, #d48f3b);
  background: transparent;
}
.section--meet-matt .meet-matt__quote p {
  margin: 0 0 0.75rem;
  color: #1a1a1a;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}
.section--meet-matt .meet-matt__quote cite {
  display: block;
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Founder bio paragraphs */
.section--meet-matt .wp-block-column > p,
.section--meet-matt .meet-matt__cols p.has-base-font-size {
  color: #3a3a3a !important;
}

/* Nametag overlay — keep amber bg, ensure black on amber stays readable */
.section--meet-matt .meet-matt__nametag strong {
  display: block;
  color: #111;
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}
.section--meet-matt .meet-matt__nametag span {
  display: block;
  color: #111;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* === Passion cards — 3 across white cards with amber circle icons === */
.section--meet-matt .passion-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.section--meet-matt .passion-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  box-shadow: 0 18px 40px -28px rgba(0,0,0,0.25);
  text-align: left;
}

.section--meet-matt .passion-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 143, 59, 0.18);
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.section--meet-matt .passion-card__title {
  color: #111 !important;
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.section--meet-matt .passion-card__body {
  color: #4a4a4a !important;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Tablet: 2 cols */
@media (max-width: 900px) {
  .section--meet-matt .passion-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 col */
@media (max-width: 600px) {
  .section--meet-matt .passion-cards {
    grid-template-columns: 1fr;
  }
}
/* === 37B&B — About "Our Values" + stats bar === */

/* Section title — make readable on warm surface */
.section--values .section__title {
  color: #111 !important;
}

/* 4-col grid */
.section--values .values-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* Card — white, left amber accent bar already showing, keep it */
.section--values .value-card {
  background: #ffffff;
  border-left: 4px solid var(--wp--preset--color--brand-accent, #d48f3b);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  box-shadow: 0 18px 40px -28px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

.section--values .value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 143, 59, 0.18);
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.section--values .value-card__title {
  color: #111 !important;
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.section--values .value-card__body {
  color: #4a4a4a !important;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* === Stats bar (dark strip below) === */
.section--stats-bar .stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.section--stats-bar .stat-item__value {
  color: var(--wp--preset--color--brand-accent, #d48f3b) !important;
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0.35rem;
}

.section--stats-bar .stat-item__label {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

/* Tablet: 2 cols */
@media (max-width: 900px) {
  .section--values .values-cards,
  .section--stats-bar .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 col for value cards, keep stats 2x2 */
@media (max-width: 600px) {
  .section--values .values-cards {
    grid-template-columns: 1fr;
  }
}
/* === 37B&B — Meet Matt section title (missed earlier) === */
.section--meet-matt .section__title {
  color: #111 !important;
}
/* === 37B&B — Hire page (hero stat badges, pricing cards, accessories) === */

/* ---------- 1. HERO stat badges — 4 across, not stacked ---------- */
.section--hero .stat-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 900px;
}

.section--hero .hero-stat-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,143,59,0.35);
  border-radius: 8px;
  padding: 1.1rem 1rem;
  text-align: center;
  backdrop-filter: blur(2px);
}

.section--hero .hero-stat-badge__value {
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.section--hero .hero-stat-badge__label {
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 700px) {
  .section--hero .stat-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- 2. PRICING CARDS (Barrel/Wooden/Oil Drum) ---------- */

/* Each pricing-card row is a wp:columns — make sure it lays out 2-up */
.section--hire-pricing .pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  align-items: center !important;
}

/* Reverse-layout variant: flip the columns */
.section--hire-pricing .pricing-card--reverse {
  flex-direction: row-reverse !important;
}

/* Image rounding + sizing */
.section--hire-pricing .pricing-card__img img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  display: block;
}

/* Title — force white so it reads on dark */
.section--hire-pricing .pricing-card__title {
  color: #ffffff !important;
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0.5rem 0 1rem !important;
  line-height: 1.1;
  -webkit-text-fill-color: #ffffff; /* defeats any text-stroke leak */
  text-shadow: none;
}

.section--hire-pricing .pricing-card__tag {
  margin: 0 0 0.5rem !important;
}

/* Feature list — kses sometimes strips bullets, force visibility */
.section--hire-pricing .pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: grid;
  gap: 0.55rem;
}
.section--hire-pricing .pricing-card__features li {
  color: #d8d8d8;
  font-size: 0.92rem;
  line-height: 1.4;
  padding-left: 1.5rem;
  position: relative;
}
.section--hire-pricing .pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  font-weight: 700;
}

/* Prices row */
.section--hire-pricing .pricing-card__prices {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.section--hire-pricing .pricing-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.section--hire-pricing .pricing-card__price-label {
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section--hire-pricing .pricing-card__price-label em {
  font-style: normal;
  background: var(--wp--preset--color--brand-accent, #d48f3b);
  color: #111;
  padding: 0.1rem 0.45rem;
  border-radius: 3px;
  margin-left: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.section--hire-pricing .pricing-card__price-value {
  color: #ffffff;
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.section--hire-pricing .pricing-card__note {
  margin-top: 0.75rem !important;
  font-style: italic;
}

/* Mobile: stack columns, drop reverse */
@media (max-width: 800px) {
  .section--hire-pricing .pricing-card,
  .section--hire-pricing .pricing-card--reverse {
    flex-direction: column !important;
    padding: 1.5rem;
  }
}

/* ---------- 3. ACCESSORIES GRID — fix blurry/outlined headings ---------- */

/* The "blurry" look is text-stroke or transparent fill on Oswald headings.
   Force solid white fill, no stroke, no shadow. */
.section--hire-accessories .accessory-card__name {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

/* While we're here, tighten the price row layout */
.section--hire-accessories .accessory-card__prices {
  display: flex;
  gap: 1.5rem;
  margin: 0 0 0.75rem;
  flex-wrap: wrap;
}
.section--hire-accessories .accessory-card__prices span {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}
.section--hire-accessories .accessory-card__prices em {
  display: block;
  font-style: normal;
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section--hire-accessories .accessory-card__note {
  color: #a8a8a8;
  font-size: 0.85rem;
  margin: 0;
}
/* === 37B&B — Hire "Simple as That" 4-step section === */

/* Title + eyebrow already shows amber/dark; force title dark */
.section--hire-how .section__title {
  color: #111 !important;
}

/* Step number — big amber ghost-style numeral */
.section--hire-how .hire-step__num {
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

/* Icon — amber, sized */
.section--hire-how .hire-step__icon {
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

/* Step title — dark, bold display face */
.section--hire-how .hire-step__title {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

/* Step body — readable grey */
.section--hire-how .hire-step p,
.section--hire-how .hire-step .has-base-font-size {
  color: #4a4a4a !important;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Optional: a faint amber dividing line above each step on desktop */
@media (min-width: 800px) {
  .section--hire-how .hire-step {
    position: relative;
    padding-top: 1.5rem;
  }
  .section--hire-how .hire-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--wp--preset--color--brand-accent, #d48f3b);
  }
}
/* === 37B&B — Hire "Merch & Brand Gear" + "Brand Your Own Beer" === */

/* Make sure both columns vertically align top, not center */
.section--hire-merch .hire-merch__cols {
  gap: 3rem;
}

/* ---------- LEFT COLUMN — Merch grid ---------- */
.section--hire-merch .merch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.section--hire-merch .merch-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.25rem 1.25rem 1.35rem;
}

.section--hire-merch .merch-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(212,143,59,0.18);
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

/* Kill the hollow/blurry text-stroke look on merch headings */
.section--hire-merch .merch-card__name {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.35rem;
}

.section--hire-merch .merch-card__price {
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}

.section--hire-merch .merch-card__desc {
  color: #a8a8a8;
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.section--hire-merch .merch-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(212,143,59,0.08);
  border-left: 3px solid var(--wp--preset--color--brand-accent, #d48f3b);
  border-radius: 4px;
  color: #d8d8d8;
  font-size: 0.88rem;
  line-height: 1.5;
}
.section--hire-merch .merch-note strong {
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  font-weight: 700;
}

/* ---------- RIGHT COLUMN — Keg card ---------- */

/* The cover image — round the corners and constrain */
.section--hire-merch .keg-card__img {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1.5rem !important;
}

/* Price label overlay — pin to top-right corner as a clean pill */
.section--hire-merch .keg-card__img .wp-block-cover__inner-container {
  position: absolute;
  inset: 0;
  padding: 0;
  display: block;
}

.section--hire-merch .keg-card__label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.78);
  border: 1px solid rgba(212,143,59,0.5);
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  min-width: 150px;
  backdrop-filter: blur(4px);
}

.section--hire-merch .keg-card__label > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.section--hire-merch .keg-card__label > div:first-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 0.35rem;
  margin-bottom: 0.35rem;
}

.section--hire-merch .keg-card__label em {
  font-style: normal;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 500;
}

.section--hire-merch .keg-card__label strong {
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.section--hire-merch .keg-card__label > div:last-child span {
  color: #c8c8c8;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

/* "BRAND YOUR OWN BEER" — kill hollow effect */
.section--hire-merch .keg-card__title {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 1.5rem !important;
}

/* Spec stats — 3-col grid with value above label */
.section--hire-merch .keg-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
}

.section--hire-merch .keg-stats__item {
  text-align: center;
}

.section--hire-merch .keg-stats__value {
  color: var(--wp--preset--color--brand-accent, #d48f3b);
  font-family: "Oswald", "Impact", system-ui, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.section--hire-merch .keg-stats__label {
  color: #c8c8c8;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Mobile: merch grid 1 col, columns stack */
@media (max-width: 800px) {
  .section--hire-merch .merch-grid {
    grid-template-columns: 1fr;
  }
}
/* === 37B&B — Legal pages (Privacy, T&Cs) === */

.section--legal .section__title {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}

.section--legal h2 {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  margin-top: 2.5rem !important;
  margin-bottom: 1rem !important;
}

.section--legal p,
.section--legal li {
  color: #3a3a3a !important;
  line-height: 1.7;
}

.section--legal p strong {
  color: #111 !important;
}

.section--legal a {
  color: var(--wp--preset--color--brand-accent, #d48f3b) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.section--legal a:hover {
  color: #b87729 !important;
}

.section--legal ul {
  margin: 0.5rem 0 1.25rem 1.25rem;
}
.section--legal li {
  margin-bottom: 0.35rem;
}

/* "Last updated" italic line — keep faded but readable */
.section--legal p[style*="italic"] {
  color: #777 !important;
  margin-bottom: 2rem !important;
}