:root {
  --brown: #e8b923;
  --brown-dark: #c99a12;
  --brown-deep: #8a6a08;
  --tan: #f0c94a;
  --tan-soft: #f6e7a8;
  --cream: #f4f1ea;
  --cream-2: #e8efe9;
  --peach: #e8efe9;
  --navy: #0c241c;
  --navy-2: #081a14;
  --navy-input: #16352a;
  --text: #14241c;
  --muted: #5b6b63;
  --line: #d7e0da;
  --gray-ph: #eef2ef;
  --heading: #0c241c;
  --heading-top: #f4f1ea;
  --heading-bot: #e8b923;
  --heading-grad: linear-gradient(90deg, #f7f4ec 0%, #e8b923 100%);
  --btn-grad: linear-gradient(145deg, #f3d15a 0%, #e8b923 48%, #c99a12 100%);
  --hero-grad: linear-gradient(135deg, #0c241c 0%, #12352a 55%, #0a1c16 100%);
  --ink: #0c241c;
  --gold: #e8b923;
  --gold-ink: #1a1604;
  --mint: #eef6f1;
  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --fw-display: 600;
}

html,
body {
  background: var(--cream);
}

body {
  font-family: var(--font-body);
  color: var(--text);
}

.btn-primary {
  background-image: var(--btn-grad);
  background-color: var(--gold);
  color: var(--gold-ink);
  box-shadow: 0 10px 22px rgba(201, 154, 18, 0.28);
  font-weight: 700;
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark,
.btn-navy {
  background: #16352a;
  color: #fff;
}

/* Dark forest header */
.site-header {
  background: var(--ink);
  border-bottom: 1px solid rgba(232, 185, 35, 0.18);
}

.nav a,
.nav-parent {
  color: #f4f1ea !important;
}

.nav a:hover,
.nav a[aria-current="page"],
.nav-item.is-current > .nav-parent {
  color: var(--gold) !important;
}

.phone-btn {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-toggle span {
  background: #f4f1ea;
}

.nav-dropdown {
  background: #102c22;
  border: 1px solid rgba(232, 185, 35, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.nav-dropdown a {
  color: #f4f1ea !important;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  background: rgba(232, 185, 35, 0.12);
  color: var(--gold) !important;
}

.nav-mega-title {
  color: var(--gold);
}

.nav-type-text small {
  color: #9bb0a6;
}

.announce {
  background: #16352a;
}

/* Kill the old peach overlapping hero */
.hero {
  top: 0;
  background: var(--ink);
  padding: 28px 0 0;
  overflow: hidden;
}

.hero-card,
.page-home .hero-card {
  height: auto;
  min-height: 0;
  margin-top: 0;
  border-radius: 0;
  background: transparent;
}

.hero-card::before {
  background: var(--hero-grad);
}

.hero-content {
  width: auto;
  max-width: none;
  height: auto;
  padding: 0;
}

.hero-content h1 {
  white-space: normal;
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  padding-bottom: 0;
}

.hero-content p {
  color: rgba(244, 241, 234, 0.82);
}

.page-home .hero-visual,
.page-home .hero-model,
.page-home .hero-perks,
.page-home .hero-product-card {
  display: none;
}

/* New split hero */
.pfu-hero {
  position: relative;
  background:
    radial-gradient(circle at 18% 20%, rgba(232, 185, 35, 0.12), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 12px),
    var(--ink);
  color: #f4f1ea;
  padding: 48px 0 0;
}

.pfu-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding-bottom: 28px;
}

.pfu-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--gold-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 18px;
}

.pfu-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 10px;
}

.pfu-hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.pfu-kicker {
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.pfu-hero p {
  color: rgba(244, 241, 234, 0.82);
  max-width: 36em;
  margin-bottom: 22px;
}

.pfu-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pfu-hero-actions .btn-ghost {
  background: #16352a;
  color: #fff;
  border: 1px solid rgba(232, 185, 35, 0.35);
}

.pfu-stage {
  position: relative;
  background: #16352a;
  border-radius: 28px;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.pfu-stage img {
  width: min(78%, 380px);
  height: auto;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.35));
}

.pfu-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pfu-chip-gold {
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: var(--gold-ink);
}

.pfu-chip-ink {
  right: 18px;
  bottom: 18px;
  background: #0c241c;
  color: var(--gold);
  border: 1px solid rgba(232, 185, 35, 0.4);
}

.pfu-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-top: 1px solid rgba(232, 185, 35, 0.18);
  padding: 16px 0 28px;
}

.pfu-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  color: #f4f1ea;
  font-size: 14px;
  font-weight: 600;
}

.pfu-trust svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Unique how-it-works strip */
.how-quote {
  background: var(--cream);
  padding: 64px 0;
}

.how-quote-grid {
  grid-template-columns: 1fr;
}

.how h2,
.center-title,
.types-head h2,
.brands-title {
  color: var(--ink);
}

.pfu-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.pfu-process li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  list-style: none;
  box-shadow: 0 8px 24px rgba(12, 36, 28, 0.06);
}

.pfu-process .n {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 12px;
}

.pfu-banner {
  margin-top: 28px;
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.pfu-banner h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  margin-bottom: 6px;
}

.pfu-banner p {
  color: rgba(255, 255, 255, 0.75);
}

.quote-cta-card {
  display: none;
}

/* Types: light cards on homepage grid */
.types-grid-home {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.type-card-light {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(12, 36, 28, 0.06);
}

.type-card-light:hover,
.type-card-light:focus-visible {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(12, 36, 28, 0.12);
}

.type-card-light h3 {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}

.type-card-light p {
  color: var(--muted);
}

.type-card-light .type-arrow {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
}

.type-card-light:hover .type-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--gold-ink);
}

/* Showcase section (replaces broken lifestyle parallax) */
.pfu-showcase {
  background: var(--ink);
  color: #f4f1ea;
  padding: 72px 0;
}

.pfu-showcase-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.pfu-showcase-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: 14px;
  line-height: 1.12;
}

.pfu-showcase-head p {
  color: rgba(244, 241, 234, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.pfu-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: end;
}

.pfu-showcase-card {
  margin: 0;
  background: #16352a;
  border: 1px solid rgba(232, 185, 35, 0.16);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.pfu-showcase-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.pfu-showcase-featured img {
  height: 340px;
}

.pfu-showcase-card figcaption {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
}

.pfu-showcase-cta {
  text-align: center;
  margin-top: 32px;
}

/* Placement already dark — polish to screenshot cards */
.placement {
  background: #0f2d22;
}

.placement-card {
  background: #16352a;
  border-color: rgba(232, 185, 35, 0.12);
}

.placement-card h3 {
  color: var(--gold);
}

.placement-media {
  border-color: var(--gold);
}

/* Popular light cards */
.popular {
  background: #f3f6f4;
}

.popular-card h3 {
  color: #c99a12;
}

/* Quote standalone: mint page, white card, navy numbers */
body.page-quote {
  background: var(--mint);
}

.quote-page-hero h1,
.quote-page-hero .text-gradient {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  background: none;
}

.quote-standalone .quote-card {
  background: #fff !important;
  color: var(--text);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(12, 36, 28, 0.1);
}

.quote-standalone .quote-card h2,
.quote-standalone .quote-sub,
.quote-standalone .quote-step-title {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink);
}

.quote-standalone .quote-progress {
  background: #f3f6f4;
  color: var(--ink);
}

.quote-standalone .qp-label,
.quote-standalone .qp-caption {
  color: var(--ink);
}

.quote-standalone .qp-node.is-done,
.quote-standalone .qp-node.is-current {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.quote-standalone .quote-form input,
.quote-standalone .quote-form select,
.quote-standalone .quote-form textarea {
  background: #f7faf8;
  color: var(--ink);
  border: 1px solid var(--line);
}

.quote-standalone .quote-form input::placeholder,
.quote-standalone .quote-form textarea::placeholder {
  color: #7a8a82;
}

.quote-standalone .quote-option > span:last-child {
  color: var(--ink);
}

.quote-standalone .quote-next,
.quote-standalone .quote-submit {
  color: var(--gold-ink);
}

.lifestyle {
  display: none;
}

.hero-card {
  height: auto;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
}

.hero-content {
  padding: 48px 40px;
  max-width: 52%;
}

.hero-perks {
  color: #fff;
}

.hero-perks li {
  color: #fff;
}

.site-footer {
  background: var(--ink);
  --footer-text: rgba(244, 241, 234, 0.9);
  --footer-muted: rgba(244, 241, 234, 0.65);
  color: var(--footer-text);
}

.footer-card {
  background: #102c22;
}

.site-footer .footer-col h4,
.site-footer .footer-social-title {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
}

.site-footer .footer-col.brand p,
.site-footer .footer-links a,
.site-footer .footer-contact-item,
.site-footer .footer-contact-item small,
.site-footer .footer-points li,
.site-footer .trust-item strong,
.site-footer .trust-item span {
  color: var(--footer-text);
  -webkit-text-fill-color: var(--footer-text);
}

.site-footer .footer-links a:hover,
.site-footer .footer-contact-item:hover {
  color: var(--gold);
}

.site-footer .footer-points li + li::before,
.site-footer .trust-item {
  border-color: rgba(244, 241, 234, 0.16);
}

.site-footer .footer-trust {
  border-top-color: rgba(244, 241, 234, 0.16);
}

.site-footer .socials a {
  border-color: rgba(244, 241, 234, 0.45);
  color: var(--footer-text);
}

.site-footer .socials a:hover,
.site-footer .socials a:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--gold-ink);
}

.site-footer .footer-bottom {
  background: #081a14;
  border-top: 1px solid rgba(244, 241, 234, 0.12);
}

.site-footer .copyright,
.site-footer .footer-legal a {
  color: var(--footer-muted);
}

.site-footer .footer-legal a:hover {
  color: var(--gold);
}

@media (max-width: 980px) {
  .pfu-hero-grid,
  .pfu-process,
  .pfu-trust {
    grid-template-columns: 1fr;
  }

  .pfu-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pfu-stage {
    min-height: 300px;
  }

  .nav {
    background: #102c22;
  }

  .nav a {
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
  }

  .nav-dropdown {
    background: #0c241c;
  }

  .hero-content {
    max-width: 100%;
    padding: 28px 20px;
  }

  .page-embroidered .hero-card,
  .page-3d-embroidered .hero-card,
  .page-chinelle .hero-card,
  .page-woven .hero-card,
  .page-printed .hero-card,
  .page-pvc .hero-card,
  .page-leather .hero-card,
  .page-biker-motorcycle-patches .hero-card,
  .page-location .hero-card,
  .page-locations .hero-card,
  .page-about .hero-card,
  .page-gallery .hero-card {
    grid-template-columns: 1fr;
  }
}

.pfu-logo {
  text-decoration: none;
}

.pfu-logo-patch {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 8px 16px 7px;
  background: #f3e6c4;
  color: #0c241c;
  border: 3px solid #0c241c;
  box-shadow: 0 0 0 2px #e8b923 inset;
  border-radius: 6px;
  line-height: 1.05;
  transform: rotate(-1.5deg);
}

.pfu-logo-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pfu-logo-usa {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #8a160e;
  letter-spacing: 0.28em;
}

.footer-logo .pfu-logo-patch {
  transform: none;
}

h1, h2, h3, h4, h5, h6,
.center-title, .brands-title, .faq h2, .types-head h2, .how h2, .gallery h2 {
  background-image: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}

.pfu-hero h1,
.placement-head h2,
.hero-content h1,
.pfu-showcase-head h2 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.pfu-hero h1 em {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
}

.placement-card h3,
.popular-card h3 {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
}

.hero-badge {
  background: var(--gold) !important;
  color: var(--gold-ink) !important;
  border-radius: 999px !important;
  font-weight: 700;
}

.page-embroidered .hero-card,
.page-3d-embroidered .hero-card,
.page-chinelle .hero-card,
.page-woven .hero-card,
.page-printed .hero-card,
.page-pvc .hero-card,
.page-leather .hero-card,
.page-biker-motorcycle-patches .hero-card,
.page-location .hero-card,
.page-locations .hero-card,
.page-about .hero-card,
.page-gallery .hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;
}

.hero-visual {
  position: relative !important;
  inset: auto !important;
  pointer-events: auto !important;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero-model {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  width: min(100%, 420px) !important;
  height: auto !important;
  max-height: 380px;
  object-fit: contain !important;
}

.hero-perks {
  display: none !important;
}

.how-intro {
  max-width: 640px;
}

.quote-standalone .quote-options {
  background: #f6f8f6;
  border-radius: 16px;
  padding: 16px;
}

.reviews-aside h3 {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}

.home-locations-links a {
  color: var(--ink);
}

.home-locations-links a:hover {
  color: var(--gold);
}

.brands {
  background: #fff;
}

.types {
  background: var(--cream);
  padding-top: 56px;
  padding-bottom: 56px;
}

.types-head {
  text-align: center;
  margin-bottom: 28px;
}

@media (max-width: 980px) {
  .types-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pfu-showcase-grid {
    grid-template-columns: 1fr;
  }

  .pfu-showcase-card img,
  .pfu-showcase-featured img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .types-grid-home {
    grid-template-columns: 1fr;
  }
}

