:root {
  --pj-green: #2d5d2a;
  --pj-green-dark: #20401d;
  --pj-red: #ff0000;
  --pj-red-dark: #710500;
  --pj-cream: #f5e8dc;
  --pj-white: #ffffff;
  --pj-dark: #000000;
  --pj-muted: #5f5f5f;
  --pj-border: #e7e7e7;
  --shadow: 0 18px 40px rgba(20, 20, 20, 0.12);
  --radius: 8px;
  --tap: 48px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  background: var(--pj-white);
  color: var(--pj-dark);
  line-height: 1.45;
  padding-bottom: 76px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--pj-dark);
  color: var(--pj-white);
  padding: 10px 12px;
  z-index: 100;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pj-border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 8px 0;
}

.brand {
  flex: 0 0 140px;
  display: block;
  padding: 8px 18px 8px 0;
}

.brand img {
  display: block;
  width: 140px;
}

.desktop-nav,
.header-order {
  display: none;
}

.header-copy {
  margin-left: auto;
  display: grid;
  gap: 2px;
  font-size: 11px;
  color: var(--pj-muted);
}

.header-copy strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--pj-green);
  font-size: 13px;
}

.maple-badge {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--pj-cream);
  font-size: 13px;
  line-height: 1;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(32, 64, 29, 0.92), rgba(45, 93, 42, 0.68) 52%, rgba(58, 58, 58, 0.28)),
    url("./assets/calgary-skyline-vip.jpg") center / cover;
  color: var(--pj-white);
  padding: 44px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 26px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--pj-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 900;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
}

.hero .eyebrow,
.hiring-section .eyebrow {
  color: #f5e8dc;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(35px, 10.4vw, 74px);
  line-height: 0.96;
  letter-spacing: 0;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  font-weight: 900;
}

#hero-title,
#hero-subtitle {
  transition: opacity 220ms ease, transform 220ms ease;
}

#hero-title.is-rotating,
#hero-subtitle.is-rotating {
  opacity: 0;
  transform: translateY(6px);
}

h2 {
  margin: 0;
  font-size: clamp(28px, 7.5vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.12;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.hero-subtitle {
  margin: 14px 0 0;
  max-width: 620px;
  font-size: clamp(18px, 5vw, 25px);
  font-weight: 800;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin: 18px 0 14px;
}

.btn {
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  padding: 13px 16px;
  font-weight: 900;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: 17px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-red {
  background: var(--pj-red);
  color: var(--pj-white);
}

.btn-green {
  background: var(--pj-green);
  color: var(--pj-white);
}

.btn-outline {
  background: var(--pj-white);
  color: var(--pj-green);
  border-color: rgba(45, 93, 42, 0.18);
}

.btn-white {
  background: var(--pj-white);
  color: var(--pj-red);
}

.btn.full {
  width: 100%;
  margin-top: 10px;
}

.trust-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  font-weight: 900;
}

.hero-media {
  display: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow);
}

.deal-poster {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 10px;
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(255, 0, 0, 0.96), rgba(255, 0, 0, 0.72) 50%, rgba(45, 93, 42, 0.96)),
    url("./assets/calgary-skyline-vip.jpg") center / cover;
  color: var(--pj-white);
}

.deal-poster span {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.deal-poster strong {
  max-width: 9ch;
  font-size: clamp(34px, 10vw, 64px);
  line-height: 0.95;
}

.deal-poster p {
  max-width: 26rem;
  margin: 0;
  color: #f5e8dc;
  font-weight: 800;
}

.brand-pathways {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 14px 0 8px;
}

.pathway-grid {
  display: grid;
  gap: 12px;
}

.pathway-card {
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--pj-border);
  background: var(--pj-white);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.pathway-card span {
  color: var(--pj-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 900;
}

.pathway-card h2 {
  color: var(--pj-green);
  font-size: clamp(23px, 6.4vw, 34px);
}

.pathway-card p {
  margin: 0;
  color: var(--pj-muted);
  font-weight: 750;
}

.pathway-card strong {
  align-self: end;
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--pj-red);
  color: var(--pj-white);
  font-size: 13px;
  font-weight: 900;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
}

.top-offer {
  margin-top: -42px;
  padding: 0;
  position: relative;
  z-index: 3;
}

.top-offer-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 0, 0, 0.32);
  border-radius: var(--radius);
  padding: 18px;
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, var(--pj-red), var(--pj-red-dark));
  color: var(--pj-white);
  box-shadow: 0 18px 42px rgba(255, 0, 0, 0.18);
}

.top-offer-card::before {
  content: "";
  position: absolute;
  inset: -42% -65%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.26) 50%, transparent 58%);
  transform: translateX(-38%);
  animation: vip-shimmer 3.8s ease-in-out infinite;
  pointer-events: none;
}

.top-offer-card > * {
  position: relative;
  z-index: 1;
}

.top-offer-copy .eyebrow {
  color: #f5e8dc;
}

.top-offer-copy h2 {
  font-size: clamp(32px, 9vw, 54px);
}

.top-offer-copy p {
  margin: 10px 0 0;
  color: #f5e8dc;
  font-size: 18px;
  font-weight: 850;
}

.top-offer-actions {
  display: grid;
  gap: 10px;
}

.vip-offer-layout {
  display: grid;
  gap: 16px;
}

.vip-savings-card {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 190px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  padding: 18px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.26), transparent 30%),
    rgba(255, 255, 255, 0.14);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.vip-savings-card span {
  justify-self: center;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--pj-white);
  color: var(--pj-red);
  font-size: 13px;
  font-weight: 950;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  letter-spacing: 0.08em;
}

.vip-savings-card strong {
  font-size: clamp(54px, 17vw, 104px);
  line-height: 0.88;
  font-weight: 950;
  letter-spacing: 0;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
}

.vip-savings-card p {
  margin: 0;
  color: #f5e8dc;
  font-size: 17px;
  font-weight: 900;
}

.vip-mini-steps {
  display: grid;
  gap: 8px;
}

.vip-mini-steps span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--pj-white);
  font-size: 13px;
  font-weight: 900;
}

.top-code-btn {
  min-height: 54px;
  background: var(--pj-white);
  color: var(--pj-red);
  box-shadow: 0 14px 26px rgba(58, 58, 58, 0.15);
  animation: vip-button-breathe 2s ease-in-out infinite;
}

.local-pride {
  padding: 14px 0 0;
}

.local-pride-card {
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(45, 93, 42, 0.18);
  border-radius: var(--radius);
  background: var(--pj-white);
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.09);
}

.local-pride-card img {
  width: 100%;
  height: clamp(150px, 42vw, 280px);
  display: block;
  object-fit: cover;
}

.local-pride-copy {
  padding: 16px;
}

.local-pride-copy h2 {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--pj-green);
  font-size: clamp(26px, 7vw, 44px);
}

.local-pride-copy p:last-child {
  margin: 10px 0 0;
  color: var(--pj-muted);
  font-size: 16px;
  font-weight: 750;
}

.how-it-works,
.local-validity {
  padding: 12px 0 0;
}

.steps-grid {
  display: grid;
  gap: 10px;
}

.step-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 2px 10px;
  align-items: center;
  border: 1px solid var(--pj-border);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--pj-white);
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.06);
}

.step-card span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--pj-green);
  color: var(--pj-white);
  font-weight: 900;
}

.step-card strong {
  color: var(--pj-green);
  font-size: 17px;
}

.step-card p {
  margin: 0;
  color: var(--pj-muted);
  font-size: 14px;
  font-weight: 700;
}

.local-validity-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(45, 93, 42, 0.18);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.local-validity-card strong {
  color: var(--pj-green);
}

.local-validity-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.local-validity-card a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(45, 93, 42, 0.09);
  color: var(--pj-green);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.section {
  padding: 30px 0 0;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading p,
.rewards-grid p,
.opt-in-card p {
  color: var(--pj-muted);
  margin: 10px 0 0;
  font-size: 16px;
}

.pizza-section {
  margin-top: 30px;
  padding: 42px 0;
  background:
    linear-gradient(135deg, var(--pj-green-dark), var(--pj-green));
  color: var(--pj-white);
}

.pizza-grid {
  display: grid;
  gap: 22px;
}

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

.pizza-intro .eyebrow {
  color: #f5e8dc;
}

.pizza-intro p {
  margin: 12px 0 0;
  color: #f4f8f3;
  font-size: 18px;
  font-weight: 750;
}

.pizza-points {
  display: grid;
  gap: 12px;
}

.pizza-points article {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 18px;
  background: rgba(255, 255, 255, 0.10);
}

.pizza-points h3 {
  color: var(--pj-white);
}

.pizza-points p {
  margin: 0;
  color: #f4f8f3;
  font-weight: 700;
}

.section-heading.light p,
.section-heading.light h2 {
  color: var(--pj-white);
}

.opt-in-section {
  padding-top: 18px;
}

.opt-in-card {
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 0, 0, 0.15), transparent 28%),
    linear-gradient(135deg, var(--pj-white), #f5e8dc);
  border: 1px solid var(--pj-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  display: grid;
  gap: 16px;
}

.opt-in-btn {
  width: 100%;
}

.deals-grid {
  display: grid;
  gap: 12px;
}

.deal-card {
  position: relative;
  overflow: hidden;
  background: var(--pj-white);
  border: 1px solid var(--pj-border);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
  display: grid;
  gap: 14px;
}

.deal-copy {
  min-width: 0;
}

.deal-featured {
  border-color: rgba(255, 0, 0, 0.42);
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 0, 0, 0.16), transparent 34%),
    linear-gradient(180deg, #fff, #f5e8dc);
  box-shadow:
    0 16px 34px rgba(255, 0, 0, 0.16),
    0 0 0 1px rgba(255, 0, 0, 0.08);
  animation: vip-card-glow 2.8s ease-in-out infinite;
}

.deal-featured::before {
  content: "";
  position: absolute;
  inset: -40% -65%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.82) 50%, transparent 58%);
  transform: translateX(-38%);
  animation: vip-shimmer 3.8s ease-in-out infinite;
  pointer-events: none;
}

.deal-featured > * {
  position: relative;
  z-index: 1;
}

.featured-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 6px 9px;
  background: var(--pj-red);
  color: var(--pj-white);
  font-size: 10px;
  font-weight: 900;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(255, 0, 0, 0.22);
  animation: vip-ribbon-pop 1.8s ease-in-out infinite;
}


.deal-action {
  display: grid;
  gap: 7px;
  align-content: center;
  justify-items: start;
}

.deal-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 42px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--pj-red);
  color: var(--pj-white);
  font-size: clamp(19px, 6vw, 26px);
  line-height: 1;
  font-weight: 900;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.18);
}

.deal-featured .deal-price {
  animation: vip-price-pulse 1.55s ease-in-out infinite;
}

.deal-featured .code-btn {
  box-shadow: 0 12px 24px rgba(255, 0, 0, 0.2);
  animation: vip-button-breathe 2s ease-in-out infinite;
}

.deal-card h3 {
  color: var(--pj-green);
}

.deal-use {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 10px;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(45, 93, 42, 0.08);
  color: var(--pj-green);
  font-size: 12px;
  font-weight: 900;
}

.deal-featured .deal-use {
  background: rgba(255, 0, 0, 0.10);
  color: var(--pj-red);
}

.deal-card p {
  margin: 8px 0 0;
  color: var(--pj-muted);
}

.code-btn {
  min-height: var(--tap);
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--pj-red);
  color: var(--pj-white);
  font-weight: 900;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.deal-action .code-btn {
  min-height: 34px;
  width: auto;
  min-width: 94px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 0, 0, 0.18);
  background: rgba(255, 0, 0, 0.10);
  color: var(--pj-red);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.deal-featured .deal-action .code-btn {
  background: var(--pj-red);
  color: var(--pj-white);
}

.code-btn.copied {
  background: var(--pj-green);
}

.fineprint {
  margin: 16px 0 0;
  color: var(--pj-muted);
  font-size: 12px;
}

.deal-order-strip {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 0, 0, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: var(--pj-white);
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
}

.deal-order-strip div {
  display: grid;
  gap: 4px;
}

.deal-order-strip strong {
  color: var(--pj-red);
  font-size: 19px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.deal-order-strip span {
  color: var(--pj-muted);
  font-size: 14px;
  font-weight: 800;
}

@keyframes vip-card-glow {
  0%,
  100% {
    box-shadow:
      0 16px 34px rgba(255, 0, 0, 0.14),
      0 0 0 1px rgba(255, 0, 0, 0.08);
  }
  50% {
    box-shadow:
      0 18px 40px rgba(255, 0, 0, 0.24),
      0 0 0 3px rgba(255, 0, 0, 0.14);
  }
}

@keyframes vip-shimmer {
  0%,
  42% {
    transform: translateX(-38%);
  }
  72%,
  100% {
    transform: translateX(38%);
  }
}

@keyframes vip-ribbon-pop {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes vip-price-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes vip-button-breathe {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.rewards-section {
  padding-bottom: 0;
}

.rewards-grid {
  background: var(--pj-white);
  border: 1px solid var(--pj-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.rewards-card {
  background: linear-gradient(135deg, #f5e8dc, var(--pj-white));
  border: 1px solid #f0dfb8;
  border-radius: 8px;
  padding: 16px;
}

.rewards-card p {
  margin: 8px 0 10px;
}

.hiring-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.20), transparent 30%),
    linear-gradient(135deg, var(--pj-red), var(--pj-red-dark));
  margin-top: 34px;
  padding: 34px 0;
  color: var(--pj-white);
}

.hiring-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.hiring-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 16px;
}

.hiring-card p {
  margin: 8px 0 0;
  color: #f5e8dc;
}

.resume-actions {
  display: grid;
  gap: 10px;
  align-items: center;
}

.resume-actions span {
  color: #f5e8dc;
  font-size: 14px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.86);
  background: transparent;
  color: var(--pj-white);
}

.copy-email-btn {
  cursor: pointer;
}

.locations-grid,
.contact-grid {
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.location-card,
.contact-card {
  background: var(--pj-white);
  border: 1px solid var(--pj-border);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
}

.location-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
}

.location-card h3 {
  color: var(--pj-red);
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.05;
}

.location-card p {
  margin: 9px 0 0;
  color: var(--pj-muted);
  line-height: 1.45;
}

.location-card p:last-of-type {
  margin-bottom: 0;
}

.location-card .address {
  color: var(--pj-dark);
  font-weight: 900;
  line-height: 1.35;
}

.location-card a {
  color: var(--pj-green);
  font-weight: 900;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.card-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pj-green);
  color: var(--pj-white);
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  line-height: 1;
  white-space: nowrap;
}

.card-actions .order-action {
  background: var(--pj-red);
}

.contact-card {
  display: grid;
  gap: 8px;
  text-decoration: none;
  align-content: start;
  min-height: 108px;
}

.contact-card strong {
  color: var(--pj-green);
  font-size: 18px;
}

.contact-card span {
  color: var(--pj-muted);
  font-size: 14px;
  line-height: 1.4;
}

.community-strip {
  display: grid;
  gap: 12px;
  margin: 0 0 14px;
  border: 1px solid rgba(45, 93, 42, 0.16);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 96% 8%, rgba(45, 93, 42, 0.10), transparent 28%),
    var(--pj-white);
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.07);
}

.community-strip strong {
  color: var(--pj-green);
  font-size: 20px;
}

.community-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.community-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(45, 93, 42, 0.09);
  color: var(--pj-green);
  font-size: 13px;
  font-weight: 900;
}

.contact-section {
  padding-bottom: 34px;
}

.site-footer {
  background: var(--pj-dark);
  color: var(--pj-white);
  padding: 26px 0 92px;
}

.site-footer .wrap {
  display: grid;
  gap: 8px;
  text-align: center;
}

.site-footer span,
.site-footer a {
  color: #d9d9d9;
}

.mobile-sticky {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(58, 58, 58, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.mobile-sticky a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pj-red);
  color: var(--pj-white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.mobile-sticky .sticky-order {
  background: var(--pj-white);
  color: var(--pj-red);
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.24);
}

.copy-toast {
  position: fixed;
  right: 10px;
  bottom: 86px;
  left: 10px;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(32, 64, 29, 0.96);
  color: var(--pj-white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.copy-toast.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.copy-toast strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.copy-toast a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 12px;
  background: var(--pj-red);
  color: var(--pj-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    gap: 8px;
    min-height: 62px;
  }

  .brand {
    flex-basis: 116px;
    padding: 6px 8px 6px 0;
  }

  .brand img {
    width: 116px;
  }

  .header-copy {
    gap: 0;
    font-size: 10px;
    line-height: 1.18;
  }

  .header-copy strong {
    gap: 5px;
    font-size: 11px;
  }

  .maple-badge {
    width: 19px;
    height: 19px;
    font-size: 11px;
  }

  .hero {
    min-height: 452px;
    padding: 30px 0 72px;
  }

  h1 {
    font-size: clamp(34px, 11.5vw, 46px);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .top-offer-card {
    padding: 16px;
  }

  .pathway-card {
    min-height: auto;
  }
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .mobile-sticky {
    display: none;
  }

  .brand {
    flex-basis: 190px;
    padding-right: 24px;
  }

  .brand img {
    width: 190px;
  }

  .header-inner {
    min-height: 82px;
  }

  .header-copy {
    font-size: 14px;
  }

  .header-copy strong {
    font-size: 16px;
  }

  .hero {
    min-height: 640px;
    padding: 70px 0 92px;
  }

  .top-offer {
    margin-top: -72px;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(190px, auto));
    justify-content: start;
  }

  .brand-pathways {
    margin-top: 0;
    padding-top: 18px;
  }

  .pathway-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pathway-card {
    min-height: 186px;
    padding: 20px;
  }

  .top-offer-card {
    padding: 24px;
  }

  .vip-offer-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
    align-items: stretch;
  }

  .top-offer-actions {
    grid-template-columns: repeat(2, minmax(190px, 220px));
  }

  .vip-mini-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .local-pride-card {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
  }

  .local-pride-card img {
    height: 100%;
    min-height: 270px;
  }

  .local-pride-copy {
    display: grid;
    align-content: center;
    padding: 24px;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .opt-in-card {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 26px;
  }

  .opt-in-btn {
    width: auto;
    min-width: 260px;
  }

  .pizza-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .pizza-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .deals-grid,
  .locations-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .deal-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .deal-order-strip {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 18px 20px;
  }

  .deal-featured {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .deal-action {
    justify-items: end;
  }

  .code-btn {
    width: 120px;
  }

  .deal-action .code-btn {
    width: auto;
  }

  .rewards-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 26px;
  }

  .hiring-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .resume-actions {
    grid-template-columns: auto auto 1fr;
  }

  .community-strip {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 18px;
  }

  .community-strip div {
    justify-content: flex-end;
  }

  .site-footer {
    padding-bottom: 32px;
  }

  .copy-toast {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: min(420px, calc(100vw - 48px));
  }
}

@media (min-width: 980px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: 14px;
  }

  .desktop-nav a {
    color: var(--pj-dark);
    font-size: 14px;
    font-weight: 900;
    font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
  }

  .desktop-nav a:hover {
    color: var(--pj-red);
  }

  .header-copy {
    margin-left: auto;
  }

  .header-order {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10px 14px;
    background: var(--pj-red);
    color: var(--pj-white);
    font-size: 13px;
    font-weight: 900;
    font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

  .hero-media {
    display: block;
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .deal-featured,
  .deal-featured::before,
  .featured-ribbon,
  .deal-featured .deal-price,
  .deal-featured .code-btn,
  .top-offer-card::before,
  .top-code-btn,
  #hero-title,
  #hero-subtitle {
    animation: none;
    transition: none;
  }

  .deal-featured::before,
  .top-offer-card::before {
    display: none;
  }
}
