:root {
  --ink: #171715;
  --paper: #fffaf0;
  --white: #ffffff;
  --line: rgba(23, 23, 21, 0.14);
  --gold: #ffbd2e;
  --coral: #f05d4e;
  --teal: #00a6a6;
  --blue: #285cc4;
  --green: #2f8f5b;
  --plum: #633a82;
  --shadow: 0 22px 60px rgba(23, 23, 21, 0.14);
  --display-font: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-lockup {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.brand-seal {
  position: relative;
  z-index: 0;
  display: inline-grid;
  place-items: center;
  width: 108px;
  height: 48px;
  background: var(--gold);
  border: 4px solid var(--ink);
  border-radius: 18px;
  box-shadow: 5px 5px 0 rgba(23, 23, 21, 0.2), inset 0 0 0 2px var(--ink);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.brand-seal::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -16px;
  top: 50%;
  width: 28px;
  height: 28px;
  background: var(--gold);
  border: 4px solid var(--ink);
  border-left: 0;
  border-top: 0;
  box-shadow: 4px 4px 0 rgba(23, 23, 21, 0.14);
  transform: translateY(-50%) rotate(-45deg);
}

.brand-seal::after {
  content: none;
}

.brand-stack {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-title {
  font-family: var(--display-font);
  font-size: 1.7rem;
  font-weight: 900;
}

.brand-tag {
  width: fit-content;
  padding: 3px 6px 2px;
  background: var(--ink);
  color: var(--white);
  border-radius: 3px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.mobile-menu-toggle {
  display: none;
}

.nav-links a,
.nav-trigger {
  padding: 10px 12px;
  border-radius: 7px;
}

.nav-links a:hover,
.nav-dropdown:focus-within .nav-trigger,
.nav-dropdown:hover .nav-trigger,
.nav-cta {
  background: var(--ink);
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 270px;
  display: grid;
  gap: 4px;
  padding: 10px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:focus-within .submenu,
.nav-dropdown:hover .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu a {
  color: var(--ink);
  border-radius: 4px;
}

.submenu a:hover {
  background: var(--gold);
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(38px, 7vw, 84px) clamp(18px, 4vw, 56px) 34px;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.94), rgba(255, 250, 240, 0.76)),
    linear-gradient(135deg, rgba(255, 189, 46, 0.32), rgba(0, 166, 166, 0.16) 48%, rgba(240, 93, 78, 0.16)),
    repeating-linear-gradient(135deg, rgba(23, 23, 21, 0.07) 0 1px, transparent 1px 18px);
}

.hero h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-family: var(--display-font);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-secondary {
  background: var(--white);
}

.button-dark {
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  width: min(640px, 100%);
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(520px, 90%);
  height: min(520px, 90%);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 12px 12px 0 var(--ink);
}

.hero-magazine {
  position: relative;
  z-index: 2;
  width: min(390px, 74%);
  min-height: 500px;
  transform: translateX(46px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.84) 68%),
    #90e0ef;
  border: 3px solid var(--ink);
  box-shadow: 14px 14px 0 rgba(23, 23, 21, 0.88);
  overflow: hidden;
}

.hero-magazine-masthead {
  position: absolute;
  top: 20px;
  left: 22px;
  right: 22px;
  padding-bottom: 9px;
  border-bottom: 4px solid var(--ink);
  font-family: var(--display-font);
  font-size: clamp(2.45rem, 5vw, 3.15rem);
  font-weight: 900;
  line-height: 0.9;
}

.hero-magazine-label {
  position: absolute;
  top: 92px;
  left: 22px;
  padding: 7px 10px;
  background: var(--coral);
  color: var(--white);
  border: 2px solid var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-megaphone {
  position: absolute;
  top: 150px;
  left: 52px;
  width: 250px;
  height: 170px;
}

.hero-megaphone::before {
  content: "";
  position: absolute;
  left: 74px;
  top: 32px;
  width: 142px;
  height: 92px;
  background: var(--white);
  border: 4px solid var(--ink);
  clip-path: polygon(0 32%, 100% 0, 100% 100%, 0 68%);
}

.hero-megaphone::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 58px;
  width: 58px;
  height: 42px;
  background: var(--ink);
  border-radius: 6px;
}

.hero-megaphone span {
  position: absolute;
  right: 0;
  top: 34px;
  width: 54px;
  height: 84px;
  border-block: 5px solid var(--coral);
}

.hero-magazine h2 {
  position: relative;
  z-index: 1;
  max-width: 7.4ch;
  margin: 0 0 18px;
  font-family: var(--display-font);
  font-size: clamp(2.35rem, 5vw, 3.05rem);
  line-height: 0.94;
}

.hero-press-card,
.hero-stats {
  position: absolute;
  z-index: 1;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.hero-press-card {
  left: 0;
  top: 46px;
  width: 220px;
  padding: 16px;
}

.press-card-top,
.hero-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.press-badge {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-family: var(--display-font);
}

.press-lines {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.press-lines span {
  height: 10px;
  background: var(--ink);
}

.press-lines span:nth-child(2) {
  width: 74%;
}

.press-lines span:nth-child(3) {
  width: 52%;
}

.hero-press-card strong {
  display: block;
  font-family: var(--display-font);
  font-size: 1.28rem;
  line-height: 1.05;
}

.hero-stats {
  right: 0;
  bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
  width: 270px;
  padding: 12px;
}

.hero-stats span {
  padding: 8px 10px;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.trust-strip div {
  padding: 22px clamp(18px, 4vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-family: var(--display-font);
  font-size: 1.2rem;
}

.trust-strip span {
  margin-top: 4px;
  opacity: 0.78;
}

.section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 4vw, 56px);
}

.breadcrumb {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--ink);
  font-weight: 800;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 32px;
  align-items: end;
}

.section-heading h2,
.order-band h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.intro > p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 56px) clamp(62px, 8vw, 110px);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.mag-cover {
  position: relative;
  aspect-ratio: 0.72;
  min-height: 390px;
  padding: 16px;
  color: var(--ink);
  border: 1px solid rgba(23, 23, 21, 0.14);
  border-radius: 2px;
  box-shadow: 0 24px 42px rgba(23, 23, 21, 0.22);
  overflow: hidden;
  isolation: isolate;
}

.mag-cover::before {
  content: "PR";
  position: absolute;
  z-index: 4;
  right: 14px;
  top: 14px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 9px;
  font-family: var(--display-font);
  font-size: 0.85rem;
  box-shadow: 3px 3px 0 rgba(23, 23, 21, 0.22);
}

.mag-cover::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  width: 46px;
  height: 24px;
  background:
    linear-gradient(var(--white), var(--white)),
    repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px);
  background-size: 100% 4px, 100% 100%;
  background-position: left bottom, left top;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.66);
}

.cover-masthead,
.cover-tag,
.cover-copy,
.cover-art {
  position: relative;
  z-index: 1;
}

.cover-masthead {
  position: absolute;
  top: 18px;
  left: 14px;
  right: 50px;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 2.25vw, 2.15rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.cover-masthead::after {
  content: "MAY / JUN 2026";
  display: block;
  margin-top: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.55rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}

.cover-tag {
  position: absolute;
  top: 86px;
  left: 16px;
  padding: 5px 8px 4px;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid rgba(255, 255, 255, 0.72);
  font-weight: 900;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.cover-copy {
  position: absolute;
  left: 14px;
  right: 64px;
  bottom: 42px;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.5);
}

.cover-copy h3 {
  margin: 0 0 8px;
  font-family: var(--display-font);
  font-size: clamp(1.9rem, 2.45vw, 2.5rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.cover-copy p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 900;
}

.cover-art {
  position: absolute;
  z-index: 0;
  inset: 112px 18px 156px;
}

.cover-art::before,
.cover-art::after {
  content: "";
  position: absolute;
}

.cover-business {
  background:
    linear-gradient(180deg, rgba(23, 23, 21, 0.03), rgba(23, 23, 21, 0.68)),
    linear-gradient(135deg, #ffbd2e, #f05d4e 46%, #20435b);
}

.storefront-art::before {
  inset: 32% 4% 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0 28%, var(--gold) 28% 72%, rgba(255, 255, 255, 0.95) 72%),
    linear-gradient(#27384b, #101820);
  border: 5px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.storefront-art::after {
  inset: 2% 8% auto;
  height: 34%;
  background: repeating-linear-gradient(90deg, #ffffff 0 22px, #d7553e 22px 44px);
  border-radius: 12px 12px 2px 2px;
  transform: rotate(-2deg);
}

.cover-music {
  background:
    linear-gradient(180deg, rgba(23, 23, 21, 0.05), rgba(23, 23, 21, 0.74)),
    linear-gradient(135deg, #111827, #285cc4 48%, #f05d4e);
}

.record-art::before {
  inset: 7% 7%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0 12%, #111 13% 36%, #f7f7f7 37% 39%, #111 40% 62%, #f7f7f7 63% 65%, #111 66%);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.4);
}

.record-art::after {
  right: 2%;
  top: 0;
  width: 30%;
  height: 72%;
  border-right: 10px solid rgba(255, 255, 255, 0.9);
  border-top: 10px solid rgba(255, 255, 255, 0.9);
  transform: skew(-12deg);
}

.cover-book {
  background:
    linear-gradient(180deg, rgba(23, 23, 21, 0.04), rgba(23, 23, 21, 0.6)),
    linear-gradient(135deg, #f7b8c9, #c57770 48%, #5b3d35);
}

.book-art::before {
  inset: 6% 18% 0;
  background: linear-gradient(90deg, #234e70 0 18%, #fffaf0 18%);
  border: 5px solid rgba(255, 255, 255, 0.92);
  box-shadow: 18px 18px 0 rgba(23, 23, 21, 0.34);
  transform: rotate(-5deg);
}

.book-art::after {
  inset: 22% 30% auto;
  height: 42%;
  border-top: 5px solid var(--gold);
  border-bottom: 5px solid var(--gold);
  transform: rotate(-5deg);
}

.cover-product {
  background:
    linear-gradient(180deg, rgba(23, 23, 21, 0.04), rgba(23, 23, 21, 0.68)),
    linear-gradient(135deg, #edf8ff, #35d477 45%, #153b2e);
}

.product-art::before {
  inset: 10% 18% 0;
  background:
    radial-gradient(circle at 78% 12%, var(--coral) 0 14%, transparent 15%),
    linear-gradient(135deg, #ffffff, #dff8ff);
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  box-shadow: 18px 20px 0 rgba(40, 92, 196, 0.62);
}

.product-art::after {
  content: "NEW";
  top: 0;
  right: 2%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: var(--coral);
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.cover-event {
  background:
    linear-gradient(180deg, rgba(23, 23, 21, 0.04), rgba(23, 23, 21, 0.74)),
    radial-gradient(circle at 20% 34%, rgba(255, 189, 46, 0.88) 0 12%, transparent 13%),
    radial-gradient(circle at 80% 34%, rgba(255, 255, 255, 0.7) 0 10%, transparent 11%),
    linear-gradient(135deg, #ffca5d, #ff6f55 44%, #552a7b);
}

.event-art::before {
  inset: 6% 8% 0;
  background:
    linear-gradient(90deg, transparent 46%, rgba(23, 23, 21, 0.92) 46% 54%, transparent 54%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.92) 0 20px, rgba(255, 189, 46, 0.95) 20px 40px);
  border: 5px solid rgba(255, 255, 255, 0.9);
  transform: rotate(-4deg);
}

.event-art::after {
  inset: 24% 16% auto;
  height: 16px;
  background: var(--coral);
  box-shadow: 0 42px 0 var(--coral), 0 84px 0 var(--coral);
  transform: rotate(-4deg);
}

.cover-founder {
  background:
    linear-gradient(180deg, rgba(23, 23, 21, 0.04), rgba(23, 23, 21, 0.72)),
    linear-gradient(135deg, #e5d9ff, #285cc4 48%, #111827);
}

.founder-art::before {
  inset: 4% 18% 0;
  background:
    radial-gradient(circle at 50% 28%, var(--gold) 0 22%, transparent 23%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0 18%, #285cc4 18% 100%);
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.32);
}

.founder-art::after {
  inset: 20% 31% auto;
  height: 34%;
  border: 8px solid var(--ink);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.cover-impact {
  background:
    linear-gradient(180deg, rgba(23, 23, 21, 0.04), rgba(23, 23, 21, 0.7)),
    radial-gradient(circle at 18% 36%, rgba(255, 189, 46, 0.82) 0 12%, transparent 13%),
    radial-gradient(circle at 80% 35%, rgba(255, 255, 255, 0.74) 0 10%, transparent 11%),
    linear-gradient(135deg, #e7fff4, #2f8f5b 45%, #16362a);
}

.impact-art::before {
  inset: 6% 8% 0;
  background:
    radial-gradient(circle at 50% 46%, var(--coral) 0 16%, transparent 17%),
    radial-gradient(circle at 36% 38%, var(--gold) 0 16%, transparent 17%),
    radial-gradient(circle at 64% 38%, var(--gold) 0 16%, transparent 17%),
    rgba(255, 255, 255, 0.24);
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px 999px 16px 16px;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.32);
}

.impact-art::after {
  inset: 62% 18% 8%;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px 999px 18px 18px;
}

.cover-custom {
  background:
    linear-gradient(180deg, rgba(23, 23, 21, 0.04), rgba(23, 23, 21, 0.75)),
    linear-gradient(135deg, #fffaf0, #ffbd2e 42%, #171715);
}

.custom-art::before {
  content: "PR";
  inset: 8% 18% 0;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  border: 5px solid rgba(255, 255, 255, 0.9);
  font-family: var(--display-font);
  font-size: 5.5rem;
  font-weight: 900;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.32);
}

.custom-art::after {
  inset: 22% 30%;
  border: 2px solid rgba(23, 23, 21, 0.35);
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.product-body h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.25rem;
}

.product-body p {
  flex: 1;
  margin: 0;
  line-height: 1.55;
}

.text-link {
  width: fit-content;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(46px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.82)),
    repeating-linear-gradient(135deg, rgba(23, 23, 21, 0.07) 0 1px, transparent 1px 18px);
}

.service-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.88;
}

.service-copy {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.service-cover-wrap .mag-cover {
  max-width: 360px;
  margin-inline: auto;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.45fr);
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(54px, 7vw, 96px) clamp(18px, 4vw, 56px);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.96), rgba(223, 248, 255, 0.78)),
    radial-gradient(circle at 82% 22%, rgba(0, 166, 166, 0.22), transparent 28%),
    repeating-linear-gradient(135deg, rgba(23, 23, 21, 0.07) 0 1px, transparent 1px 18px);
  border-bottom: 3px solid var(--ink);
}

.contact-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 0.86;
}

.contact-proof {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
}

.contact-proof span,
.contact-proof strong {
  display: block;
}

.contact-proof span {
  width: fit-content;
  padding: 5px 8px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--display-font);
  text-transform: uppercase;
}

.contact-proof strong {
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 0.95;
}

.contact-proof p {
  margin: 0;
  line-height: 1.55;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(54px, 7vw, 96px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(0, 166, 166, 0.08), rgba(255, 189, 46, 0.11)),
    var(--paper);
}

.support-chat,
.contact-sidebar {
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(23, 23, 21, 0.14);
}

.support-chat {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 32px);
}

.chat-window {
  overflow: hidden;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.chat-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: var(--ink);
  color: var(--white);
}

.chat-header strong,
.chat-header small,
.chat-header em {
  display: block;
}

.chat-header strong {
  font-family: var(--display-font);
  font-size: 1.7rem;
  line-height: 0.95;
}

.chat-header small {
  margin-top: 5px;
  font-weight: 900;
}

.chat-header small span {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.chat-header em {
  padding: 6px 8px;
  background: var(--gold);
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 330px;
  max-height: 430px;
  overflow: auto;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(223, 248, 255, 0.4)),
    var(--paper);
}

.chat-intake {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px 16px 0;
  background: var(--paper);
}

.chat-intake label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.chat-intake input {
  width: 100%;
  min-width: 0;
  padding: 12px;
  background: var(--white);
  border: 2px solid var(--ink);
}

.chat-bubble {
  max-width: 76%;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  line-height: 1.45;
  font-weight: 750;
}

.chat-bubble.support {
  align-self: flex-start;
  background: var(--white);
  border-radius: 0 14px 14px 14px;
}

.chat-bubble.user {
  align-self: flex-end;
  background: var(--teal);
  color: var(--white);
  border-radius: 14px 0 14px 14px;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 16px 0;
  background: var(--paper);
}

.chat-quick-replies button {
  padding: 8px 10px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.chat-quick-replies button:hover {
  background: var(--gold);
}

.chat-compose {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px;
  background: var(--paper);
}

.chat-compose input {
  min-width: 0;
  padding: 13px;
  background: var(--white);
  border: 2px solid var(--ink);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 2px solid var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background: #f7fcff;
  border: 2px solid var(--ink);
  border-radius: 0;
}

.wide-field {
  grid-column: 1 / -1;
}

.contact-sidebar {
  align-self: start;
  position: sticky;
  top: 108px;
  display: grid;
  gap: 20px;
  padding: 24px;
}

.contact-sidebar h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 2.4rem;
  line-height: 0.92;
}

.contact-sidebar ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
}

.email-template-preview {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.email-template-preview .brand-title {
  font-size: 1.25rem;
}

.email-template-preview .brand-seal {
  width: 84px;
  height: 40px;
  font-size: 0.62rem;
}

.email-template-preview strong {
  font-family: var(--display-font);
  font-size: 1.55rem;
  line-height: 0.95;
}

.email-template-preview p {
  margin: 0;
  line-height: 1.5;
}

.service-panel,
.service-sidebar {
  background: var(--white);
  border: 2px solid var(--ink);
}

.service-panel {
  padding: clamp(24px, 4vw, 42px);
}

.service-panel + .service-panel {
  margin-top: 18px;
}

.service-panel h2,
.service-sidebar h2 {
  margin: 0 0 18px;
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.service-panel ul,
.service-panel ol,
.service-sidebar ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.faq-list dt {
  font-weight: 900;
}

.faq-list dd {
  margin: 0 0 8px;
  line-height: 1.6;
}

.service-panel p {
  margin: 0 0 18px;
  line-height: 1.65;
}

.service-panel li strong {
  display: block;
}

.service-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 22px;
  box-shadow: 8px 8px 0 var(--ink);
}

.service-sidebar p {
  margin: 0 0 16px;
  line-height: 1.55;
}

.sidebar-kicker {
  margin-bottom: 8px !important;
  color: var(--coral);
  font-family: var(--display-font);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.price-stack {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.package-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 14px;
  background: var(--paper);
  border: 2px solid var(--ink);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.package-option:hover,
.package-option:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.package-option.featured {
  background: rgba(255, 189, 46, 0.24);
}

.package-option span {
  display: grid;
  gap: 5px;
}

.package-option strong {
  font-weight: 900;
  font-size: 1.02rem;
}

.package-option small {
  font-weight: 700;
  line-height: 1.35;
}

.package-option b {
  font-size: 1.25rem;
}

.addon-callout {
  padding: 12px;
  background: var(--gold);
  border: 2px solid var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.package-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}

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

.package-grid article {
  padding: 24px;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.package-grid .featured-package {
  background: var(--gold);
  box-shadow: 8px 8px 0 var(--ink);
}

.package-name {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.package-grid strong {
  display: block;
  margin: 18px 0 10px;
  font-family: var(--display-font);
  font-size: 2.6rem;
}

.package-grid p {
  margin: 0;
  line-height: 1.55;
}

.sales-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 56px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.sales-copy h2,
.proof-section h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: 0.92;
}

.sales-copy p:not(.eyebrow) {
  max-width: 780px;
  margin: 24px 0 0;
  font-size: 1.12rem;
  line-height: 1.7;
}

.sales-points {
  display: grid;
  gap: 14px;
}

.sales-points article {
  padding: 20px;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.sales-points strong,
.sales-points span {
  display: block;
}

.sales-points strong {
  margin-bottom: 8px;
  font-family: var(--display-font);
  font-size: 1.65rem;
}

.sales-points span {
  line-height: 1.55;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(380px, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 56px);
  background: var(--teal);
  border-bottom: 3px solid var(--ink);
}

.proof-section .eyebrow {
  color: var(--white);
}

.seo-hub-section,
.solution-layout {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 4vw, 56px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.seo-link-grid a {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 16px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(23, 23, 21, 0.18);
  font-weight: 900;
}

.seo-link-grid a:hover {
  background: var(--gold);
}

.solution-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.96), rgba(223, 248, 255, 0.72)),
    repeating-linear-gradient(135deg, rgba(23, 23, 21, 0.07) 0 1px, transparent 1px 18px);
  border-bottom: 3px solid var(--ink);
}

.solution-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3.4rem, 7.5vw, 7.6rem);
  line-height: 0.86;
}

.solution-card {
  padding: 24px;
  background: var(--gold);
  border: 3px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
}

.solution-card span,
.solution-card strong {
  display: block;
}

.solution-card span {
  font-family: var(--display-font);
  color: var(--coral);
  text-transform: uppercase;
}

.solution-card strong {
  margin: 10px 0;
  font-family: var(--display-font);
  font-size: 4rem;
  line-height: 0.9;
}

.solution-card p {
  margin: 0;
  line-height: 1.55;
}

.solution-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.solution-panel {
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
  border: 2px solid var(--ink);
}

.solution-panel h2 {
  margin: 0 0 16px;
  font-family: var(--display-font);
  font-size: 2.5rem;
  line-height: 0.92;
}

.solution-panel p,
.solution-panel li {
  line-height: 1.6;
}

.solution-panel .seo-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.outlet-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.outlet-logo {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  overflow: hidden;
}

.outlet-logo img {
  display: block;
  width: 100%;
  height: 82px;
  object-fit: contain;
}

.outlets-logo {
  flex-direction: column;
  padding: 14px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display-font);
  text-transform: uppercase;
}

.outlets-logo strong {
  font-size: 2rem;
  line-height: 0.9;
}

.outlets-logo em {
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 900;
}

.social-proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 189, 46, 0.2), rgba(240, 93, 78, 0.16)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.social-copy h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.6rem, 5.6vw, 6rem);
  line-height: 0.9;
}

.social-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0;
  font-size: 1.12rem;
  line-height: 1.7;
}

.social-profile-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  max-width: 560px;
  padding: 14px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.social-profile-card strong,
.social-profile-card span {
  display: block;
}

.social-profile-card strong {
  font-family: var(--display-font);
  font-size: 1.55rem;
}

.social-profile-card span {
  font-weight: 900;
}

.social-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: inset 0 0 0 2px var(--ink);
  font-family: var(--display-font);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.social-logo::after {
  content: none;
}

.social-profile-card .social-logo {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  box-shadow: 5px 5px 0 rgba(23, 23, 21, 0.18), inset 0 0 0 2px var(--ink);
  padding: 0;
  font-size: 0;
}

.social-profile-card .social-logo::before {
  content: "PR";
  display: block;
  color: var(--ink);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.18rem;
  line-height: 1;
}

.social-logo.small {
  width: 30px;
  height: 30px;
  border-width: 2px;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px var(--ink);
  font-size: 0.7rem;
}

.instagram-board {
  position: relative;
  min-height: 470px;
}

.insta-phone {
  position: absolute;
  top: 44px;
  left: 0;
  width: 245px;
  min-height: 390px;
  padding: 12px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 26px;
  box-shadow: 12px 14px 0 rgba(23, 23, 21, 0.2);
  transform: rotate(-6deg);
}

.insta-phone.featured {
  z-index: 2;
  top: 0;
  left: 210px;
  width: 278px;
  min-height: 430px;
  transform: rotate(2deg);
}

.insta-phone:last-child {
  top: 72px;
  left: 430px;
  transform: rotate(6deg);
}

.insta-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 900;
}

.insta-post {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px;
  color: var(--white);
  border-radius: 18px;
  overflow: hidden;
  background: #111827;
}

.featured .insta-post {
  min-height: 320px;
}

.post-mark {
  position: absolute;
  top: 30px;
  right: 24px;
  display: block;
  pointer-events: none;
}

.post-mark-ribbon {
  width: 104px;
  height: 74px;
  border: 6px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0 18px, transparent 18px 30px, rgba(255, 255, 255, 0.88) 30px 48px, transparent 48px 60px, rgba(255, 255, 255, 0.88) 60px 78px, transparent 78px),
    rgba(23, 23, 21, 0.15);
  transform: rotate(-7deg);
}

.post-mark-ribbon::before {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -32px;
  width: 58px;
  height: 32px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 50% 70%, 20% 100%);
}

.post-mark-play {
  width: 114px;
  height: 114px;
  border: 7px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(23, 23, 21, 0.3);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.post-mark-play::before {
  content: "";
  position: absolute;
  left: 45px;
  top: 34px;
  width: 0;
  height: 0;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  border-left: 34px solid var(--gold);
}

.post-mark-bylines {
  width: 128px;
  height: 100px;
  border: 6px solid rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(rgba(255, 255, 255, 0.9) 0 8px, transparent 8px 20px) 20px 22px / 86px 20px repeat-y,
    rgba(23, 23, 21, 0.18);
  transform: rotate(6deg);
}

.post-mark-bylines::before {
  content: "PR";
  position: absolute;
  left: 18px;
  top: -22px;
  display: grid;
  width: 52px;
  height: 34px;
  place-items: center;
  background: var(--gold);
  border: 4px solid rgba(23, 23, 21, 0.9);
  font-family: var(--display-font);
  font-style: normal;
  color: var(--ink);
}

.insta-post span {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 5px 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.insta-post strong {
  position: relative;
  z-index: 1;
  max-width: 210px;
  font-family: var(--display-font);
  font-size: 1.8rem;
  line-height: 0.92;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.insta-post-business {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.64)),
    linear-gradient(135deg, #ffbd2e, #f05d4e 48%, #153b2e);
}

.insta-post-music {
  background:
    linear-gradient(135deg, rgba(255, 189, 46, 0.95) 0 8px, transparent 8px 26px) 0 0 / 34px 34px,
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #285cc4, #171715 52%, #f05d4e);
}

.insta-post-founder {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 2px, transparent 2px 18px),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.66)),
    linear-gradient(135deg, #c9b6ff, #285cc4 50%, #171715);
}

.insta-actions {
  display: flex;
  gap: 8px;
  padding: 12px 2px 0;
}

.insta-actions span {
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.faq-section,
.conversion-section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 4vw, 56px);
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.faq-grid article {
  padding: 22px;
  background: var(--white);
  border: 2px solid var(--ink);
}

.faq-grid h3 {
  margin: 0 0 10px;
  font-family: var(--display-font);
  font-size: 1.65rem;
  line-height: 1;
}

.faq-grid p {
  margin: 0;
  line-height: 1.55;
}

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

.conversion-grid article {
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.deal-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  background: var(--gold);
  border: 2px solid var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.conversion-grid h3 {
  margin: 0 0 12px;
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 0.98;
}

.conversion-grid p {
  margin: 0;
  line-height: 1.58;
}

.order-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 4vw, 56px);
  background: var(--teal);
  border-block: 3px solid var(--ink);
}

.order-band .eyebrow {
  color: var(--white);
}

.site-footer {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 56px) 24px;
  background: var(--ink);
  color: var(--white);
}

.site-footer .brand-mark {
  box-shadow: none;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(2, minmax(160px, 0.7fr)) minmax(240px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.footer-brand-block p,
.footer-proof p {
  max-width: 560px;
  margin: 18px 0 0;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-links,
.footer-proof {
  display: grid;
  gap: 10px;
}

.footer-links h2,
.footer-proof h2 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-proof .button {
  width: fit-content;
  margin-top: 8px;
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.order-modal {
  width: min(880px, calc(100vw - 56px));
  padding: 0;
  border: 3px solid var(--ink);
  background: transparent;
  box-shadow: var(--shadow);
}

.order-modal::backdrop {
  background: rgba(23, 23, 21, 0.58);
}

dialog.discount-modal {
  width: min(620px, calc(100vw - 44px));
  max-width: 620px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--ink);
  overflow: visible;
}

dialog.discount-modal::backdrop {
  background: rgba(23, 23, 21, 0.62);
  backdrop-filter: blur(4px);
}

form.discount-card {
  position: relative;
  display: grid;
  box-sizing: border-box;
  gap: 18px;
  width: 100%;
  padding: 26px;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--gold);
}

.discount-brand {
  display: flex;
  align-items: center;
  max-width: calc(100% - 54px);
}

.discount-brand .brand-lockup {
  transform-origin: left center;
  transform: scale(0.78);
}

.discount-copy {
  padding-top: 4px;
  border-top: 3px solid var(--ink);
}

.discount-card h2 {
  max-width: 530px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.9;
}

.discount-card p:not(.eyebrow) {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(23, 23, 21, 0.72);
  font-size: 1.02rem;
  line-height: 1.55;
}

.discount-field {
  display: grid;
  gap: 8px;
  width: 100%;
  font-weight: 900;
}

.discount-field input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--ink);
  background: var(--white);
  font: inherit;
}

.discount-card small {
  color: rgba(23, 23, 21, 0.72);
  line-height: 1.45;
}

.discount-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  background: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.discount-close:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

.modal-card {
  position: relative;
  display: grid;
  gap: 16px;
  max-height: calc(100vh - 64px);
  overflow: auto;
  padding: 28px;
  background: var(--paper);
}

.modal-card h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 0.95;
}

.modal-note {
  margin: 0;
  line-height: 1.55;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  background: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-card label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.modal-card select,
.modal-card input,
.modal-card textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 12px;
  background: var(--white);
}

.modal-card textarea {
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.questionnaire-section {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 2px solid var(--ink);
}

.questionnaire-section h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 0.95;
}

.questionnaire-section p {
  margin: 0;
  line-height: 1.5;
}

.service-field-grid label:first-child,
.service-field-grid label:nth-child(n + 3) {
  grid-column: 1 / -1;
}

.form-notice,
.savings-note {
  padding: 12px 14px;
  background: var(--white);
  border: 2px solid var(--ink);
  line-height: 1.45;
}

.form-notice {
  border-left: 8px solid var(--gold);
}

.savings-note {
  border-left: 8px solid var(--teal);
  font-weight: 900;
}

.conditional-field.is-hidden {
  display: none;
}

.upsell-picker {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 2px solid var(--ink);
}

.upsell-picker h3 {
  margin: 0 0 6px;
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 0.96;
}

.upsell-picker p {
  margin: 0;
  line-height: 1.5;
}

.upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.upsell-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 10px;
  align-items: start;
  padding: 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  cursor: pointer;
}

.upsell-card:has(input:checked) {
  background: var(--gold);
  box-shadow: 4px 4px 0 var(--ink);
}

.upsell-card input {
  width: auto;
  margin-top: 4px;
}

.upsell-card span,
.upsell-card small {
  grid-column: 2;
}

.upsell-card span {
  font-weight: 900;
}

.upsell-card small {
  line-height: 1.35;
}

.modal-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border: 2px solid var(--ink);
}

.modal-total strong {
  font-family: var(--display-font);
  font-size: 2rem;
}

.modal-submit {
  width: 100%;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
    max-width: 620px;
    margin-inline: auto;
  }

  .intro,
  .footer-main,
  .service-hero,
  .service-layout,
  .contact-hero,
  .contact-layout,
  .solution-hero,
  .solution-layout,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-sidebar {
    position: static;
  }

  .contact-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }

  .order-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand-lockup {
    gap: 14px;
  }

  .site-header .brand-seal {
    width: 86px;
    height: 40px;
    border-width: 3px;
    border-radius: 15px;
    box-shadow: 3px 3px 0 rgba(23, 23, 21, 0.18), inset 0 0 0 1px var(--ink);
    font-size: 0.62rem;
  }

  .site-header .brand-seal::before {
    right: -13px;
    width: 22px;
    height: 22px;
    border-width: 3px;
  }

  .site-header .brand-title {
    font-size: 1.28rem;
  }

  .site-header .brand-tag {
    font-size: 0.54rem;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    grid-template-columns: 18px auto;
    align-items: center;
    gap: 3px 8px;
    min-height: 44px;
    padding: 8px 10px;
    background: var(--ink);
    color: var(--white);
    border: 2px solid var(--ink);
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    grid-column: 1;
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .mobile-menu-toggle em {
    grid-column: 2;
    grid-row: 1 / 4;
    font-style: normal;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    overflow: visible;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .nav-trigger {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    border: 2px solid var(--ink);
    background: var(--white);
    color: var(--ink);
  }

  .nav-links .nav-cta {
    justify-content: center;
    background: var(--ink);
    color: var(--white);
  }

  .nav-dropdown {
    width: 100%;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links.is-open .nav-dropdown:focus-within .submenu {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 22vw, 7rem);
  }

  .hero-visual {
    min-height: 430px;
    overflow: hidden;
  }

  .hero-visual::before {
    width: 390px;
    height: 390px;
  }

  .hero-magazine {
    width: min(310px, 78vw);
    min-height: 410px;
    padding: 18px;
    transform: translateX(0);
  }

  .hero-magazine-masthead {
    left: 18px;
    right: 18px;
    font-size: 2.55rem;
  }

  .hero-magazine-label {
    top: 78px;
    left: 18px;
  }

  .hero-megaphone {
    top: 135px;
    left: 28px;
    transform: scale(0.8);
    transform-origin: top left;
  }

  .hero-magazine h2 {
    font-size: 2.45rem;
  }

  .hero-press-card {
    top: 12px;
    left: 0;
    width: 205px;
    padding: 12px;
  }

  .hero-press-card strong {
    font-size: 1.15rem;
  }

  .hero-stats {
    right: 0;
    bottom: 28px;
    width: 240px;
    padding: 10px;
    font-size: 0.78rem;
  }

  .trust-strip,
  .sales-section,
  .proof-section,
  .social-proof-section,
  .product-grid,
  .seo-link-grid,
  .solution-panel .seo-link-grid,
  .form-grid,
  .upsell-grid,
  .outlet-row,
  .conversion-grid,
  .package-grid,
  .sales-points,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .sales-section,
  .proof-section,
  .seo-hub-section,
  .social-proof-section,
  .conversion-section,
  .faq-section,
  .package-section,
  .service-hero,
  .service-layout,
  .contact-hero,
  .contact-layout,
  .solution-hero,
  .solution-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-panel,
  .service-sidebar {
    padding: 18px;
  }

  .service-panel h2,
  .service-sidebar h2,
  .section-heading h2,
  .order-band h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .service-copy,
  .service-panel p,
  .service-panel li,
  .product-body p,
  .faq-grid p,
  .hero-copy {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions,
  .package-option,
  .modal-total {
    width: 100%;
  }

  .package-option {
    grid-template-columns: 1fr;
  }

  .package-option b {
    font-size: 1.45rem;
  }

  .order-modal,
  dialog.discount-modal {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .modal-card,
  form.discount-card {
    max-height: calc(100dvh - 28px);
    padding: 18px;
  }

  .modal-card h2,
  .discount-card h2 {
    padding-right: 42px;
    font-size: clamp(2.2rem, 13vw, 3.35rem);
  }

  .discount-brand .brand-lockup {
    transform: scale(0.68);
  }

  .service-field-grid label:first-child,
  .service-field-grid label:nth-child(n + 3),
  .form-grid label {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mag-cover {
    min-height: 420px;
  }

  .outlet-row {
    width: 100%;
  }

  .outlet-logo {
    width: 100%;
    min-height: 76px;
  }

  .outlet-logo img {
    width: 100%;
    max-width: 260px;
    height: 76px;
  }

  .social-profile-card {
    grid-template-columns: auto 1fr;
  }

  .social-profile-card .button {
    grid-column: 1 / -1;
  }

  .instagram-board {
    display: grid;
    gap: 14px;
    min-height: 0;
    width: 100%;
  }

  .insta-phone,
  .insta-phone.featured,
  .insta-phone:last-child {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    transform: none;
  }

  .insta-post,
  .featured .insta-post {
    min-height: 245px;
  }

  .post-mark {
    transform: scale(0.78);
    transform-origin: top right;
  }
}

@media (max-width: 430px) {
  .button {
    width: 100%;
  }

  .cover-masthead {
    font-size: 1.65rem;
  }
}
