/* Branding Buffalo — site stylesheet */

:root {
  /* Branding Buffalo brand tokens */
  --red: #DD1B1B;
  --navy: #02254D;
  --white: #FFFFFF;
  --light-gray: #F1F1F1;
  --medium-gray: #CCCCCC;
  --text: #333333;

  /* legacy tokens, mapped onto the brand palette so existing components
     inherit the new system without being individually rewritten */
  --cream: var(--white);
  --cream-alt: var(--light-gray);
  --card: var(--white);
  --charcoal: var(--navy);
  --charcoal-soft: var(--text);
  --line: var(--medium-gray);
  --gold: var(--red);
  --gold-deep: #B01515;
  --gold-soft: #F3AFAF;
  /* controlled secondary palette, used sparingly for category identity,
     not decoration */
  --teal: #1f7a68;
  --teal-tint: #e2f1ec;
  --terracotta: #c65a1f;
  --terracotta-tint: #fbe9dc;
  --raspberry: #b23a68;
  --raspberry-tint: #fbe6ee;
  --focus: var(--red);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px -14px rgba(42, 36, 28, 0.28);
  --shadow-sm: 0 4px 14px -8px rgba(42, 36, 28, 0.3);
  --max: 1180px;
  --font-display: Helvetica, Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

img,
a,
p,
h1, h2, h3, h4 {
  overflow-wrap: anywhere;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal-soft);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5.4vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a {
  color: var(--gold-deep);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--charcoal);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 1rem;
}

/* Top call strip — slim, white, scrolls normally (not sticky) */
.call-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.call-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}
.call-strip a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.call-strip a:hover,
.call-strip a:focus-visible {
  text-decoration: underline;
}

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--charcoal);
}
.brand-logo {
  height: 88px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  color: var(--gold-deep);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.main-nav a:not(.btn) {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.3rem 0.1rem;
  border-bottom: 2px solid transparent;
}
.main-nav a:not(.btn):hover,
.main-nav a:not(.btn):focus-visible,
.main-nav a:not(.btn)[aria-current="page"] {
  color: var(--red);
  border-bottom-color: var(--red);
}

.nav-toggle {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 48px;
  line-height: 1.1;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-deep);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--navy);
  color: var(--white);
}
.btn-light {
  background: #fff;
  color: var(--charcoal);
  border-color: var(--line);
}
.btn-light:hover {
  border-color: var(--gold);
}
.btn-block {
  width: 100%;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover,
.btn-navy:focus-visible {
  background: #011a37;
  border-color: #011a37;
}

/* Homepage hero — logo left, headline right, white central field framed
   by angled red (top) and navy (bottom) bands built from clipped
   pseudo-elements, not an image asset. */
.hero-split {
  position: relative;
  overflow: hidden;
  background: var(--white);
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 4.75rem 0;
}
.hero-split::before,
.hero-split::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
}
.hero-split::before {
  top: 0;
  height: 130px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 55%, 0 100%);
}
.hero-split::after {
  bottom: 0;
  height: 130px;
  background: var(--navy);
  clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%);
}
.hero-split-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
}
.hero-split-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-split-logo {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}
.hero-split-copy h1 {
  font-family: var(--font-display);
  color: var(--red);
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(3rem, 4vw, 3.375rem);
  margin: 0 0 0.75rem;
}
.hero-split-copy p {
  color: var(--navy);
  font-size: 1.15rem;
  max-width: 46ch;
  margin: 0;
}
.hero-split-copy p.hero-tournament-message {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  max-width: 30ch;
  margin: 0 0 0.75rem;
}
.hero-tournament-message .htm-line {
  display: block;
}
.hero-tournament-message .htm-nowrap {
  white-space: nowrap;
}
.hero-split-copy .hero-services {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  row-gap: 0.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin: 0.75rem 0 0;
}
.hero-services span {
  white-space: nowrap;
}
.hero-services span + span::before {
  content: '•';
  margin: 0 0.4rem 0 0.35rem;
}
@media (min-width: 761px) {
  .hero-tournament-message .htm-line {
    white-space: nowrap;
  }
}
@media (min-width: 761px) and (max-width: 991px) {
  .hero-split-copy p.hero-tournament-message {
    font-size: clamp(1.5rem, calc(3.4vw - 1.6px), 1.8rem);
  }
}

/* Hero — text-led, asymmetric collage. The headline is the dominant
   element on first screen; the collage has one clear anchor image with
   a strong second voice and supporting images reduced in size. */
.hero {
  padding: 2.75rem 0 4.5rem;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--gold-deep);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.hero-eyebrow::before {
  content: '';
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-copy h1 {
  font-size: clamp(2.35rem, 6.6vw, 4.9rem);
  letter-spacing: -0.015em;
}
.hero-copy p {
  font-size: 1.15rem;
  color: var(--charcoal-soft);
  max-width: 42ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}
.hero-collage .tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
}
.hero-collage .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-collage .tile-lead {
  grid-column: 1 / -1;
  aspect-ratio: 20 / 9;
}
.hero-collage .tile-lead::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(20, 16, 10, 0) 55%, rgba(20, 16, 10, 0.32) 100%);
  pointer-events: none;
}
.hero-collage .tile-shirt {
  grid-column: 1;
  aspect-ratio: 5 / 4;
}
.hero-collage .tile-stack {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hero-collage .tile-stack .tile {
  flex: 1;
  aspect-ratio: 5 / 3;
  border-radius: var(--radius-md);
}

/* Sections */
.section {
  padding: 4rem 0;
}
.section-tight {
  padding: 2.5rem 0;
}
.section-alt {
  background: var(--cream-alt);
}
.section-head {
  max-width: 62ch;
  margin: 0 0 2.25rem;
}
.section-head.compact {
  margin-bottom: 1.5rem;
}
.section-head p {
  color: var(--charcoal-soft);
  font-size: 1.05rem;
}
.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 0.5rem;
}

/* Offer families — editorial, image-led columns instead of boxed cards.
   Each family carries its own accent color (from the controlled secondary
   palette) through the kicker, rule, and link — no card background,
   no shadow, no shared border-radius on every element. */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.offer {
  text-decoration: none;
  color: var(--charcoal);
  padding: 0 1.75rem;
  border-left: 1px solid var(--line);
}
.offer:first-child {
  padding-left: 0;
  border-left: none;
}
.offer:last-child {
  padding-right: 0;
}
.offer .thumb {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}
.offer .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.offer:hover .thumb img {
  transform: scale(1.045);
}
/* deliberately varied proportions so the row doesn't read as three
   identical tiles */
.offer-prints .thumb { aspect-ratio: 4 / 5; }
.offer-apparel .thumb { aspect-ratio: 1 / 1; }
.offer-gifts .thumb { aspect-ratio: 4 / 5; }
.offer-kicker {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
  color: var(--teal);
}
.offer-apparel .offer-kicker { color: var(--terracotta); }
.offer-gifts .offer-kicker { color: var(--raspberry); }
.offer h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: 0.6rem;
}
.offer p {
  color: var(--charcoal-soft);
}
.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--charcoal);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 0.15rem;
}
.offer-apparel .offer-link { border-bottom-color: var(--terracotta); }
.offer-gifts .offer-link { border-bottom-color: var(--raspberry); }

/* Idea list — a light, inline tag row rather than a grid of boxed cards */
.idea-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.idea-grid li {
  position: relative;
  padding-left: 1.1rem;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
}
.idea-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.idea-note {
  margin-top: 1.75rem;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  max-width: 68ch;
}

/* Process — one connected sequence, not three floating cards. A single
   rule runs behind the numbers on desktop; on mobile it turns vertical. */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
  padding-top: 0.25rem;
}
.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: var(--line);
}
.step {
  position: relative;
  padding-right: 0.5rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}
.section-alt .step::before {
  background: var(--cream-alt);
}

/* Two-column image/text bands — DTF Transfers, event printing, and any
   future split section. Alternate orientation with .split-reverse and
   alternate background with .section-alt. */
.split-section {
  padding: 4.5rem 0;
  background: var(--white);
}
.split-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-copy h2 {
  color: var(--red);
}
.split-copy p {
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  max-width: 48ch;
}
.split-copy .btn {
  margin-top: 0.5rem;
}
.split-reverse .split-media {
  order: 2;
}
.split-reverse .split-copy {
  order: 1;
}

/* Partner storefront sections — alternating image/text bands matching the
   merchant's original site. Logo on one side, heading + CTA on the other,
   vertically centered, alternating light-gray backgrounds. */
.bg-gray-1 { background: #CCCCCC; }
.bg-gray-2 { background: #E9E9E9; }

.partner-band {
  padding: 3rem 0;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.partner-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max);
}
.partner-band-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-band-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.logo-cold-beer-creek { max-width: 340px; }
.logo-refuse-to-lose { max-width: 280px; }
.logo-32-apparel { max-width: 260px; }
.logo-vikings-baseball { max-width: 320px; }
.partner-band-copy {
  text-align: left;
}
.partner-band-copy h2 {
  color: var(--red);
}
.partner-band-reverse .partner-band-media {
  order: 2;
}
.partner-band-reverse .partner-band-copy {
  order: 1;
}

/* Summit Center — no approved logo asset, so a single intentional
   full-width navy band instead of an empty white section. */
.summit-band {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}
.summit-band h2 {
  color: #fff;
}
.summit-band .btn-primary {
  margin-top: 0.5rem;
}

/* Plain bulleted list — no pill/chip styling */
.plain-list {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
  color: var(--charcoal-soft);
}
.plain-list li {
  margin-bottom: 0.4rem;
}
.plain-list li::marker {
  color: var(--red);
}

/* "Check Out Our Work" carousel — native horizontal scroll, no white
   photo frames, consistent crop via object-fit: cover. */
.work-section h2 {
  color: var(--red);
  text-align: center;
  margin-bottom: 2rem;
}
.work-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.work-track {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0 0 0.75rem;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.work-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
@media (prefers-reduced-motion: reduce) {
  .work-track {
    scroll-behavior: auto;
  }
}
.work-item {
  flex: 0 0 auto;
  width: min(78vw, 340px);
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
}
.work-item .gallery-item {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: none;
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: block;
}
.work-item .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.work-item .gallery-item:hover img,
.work-item .gallery-item:focus-visible img {
  transform: scale(1.04);
}
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: var(--navy);
  color: var(--white);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-grid.compact {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  margin: 0;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: border-color 0.2s ease;
}
.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: var(--gold);
}
.gallery-item .thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Featured Real Work — a tighter editorial collage with one clear
   primary image and a "See the Full Gallery" panel composed in, not a
   button bolted underneath. */
.featured-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, clamp(150px, 17vw, 210px)) clamp(120px, 12vw, 160px);
  grid-template-areas:
    "lead lead keychain family"
    "lead lead keychain family"
    "colorful rabbits cta cta";
  gap: 0.85rem;
}
.featured-collage .tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
}
.featured-collage .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.featured-collage .tile:hover img {
  transform: scale(1.04);
}
.f-lead { grid-area: lead; }
.f-keychain { grid-area: keychain; }
.f-family { grid-area: family; }
.f-colorful { grid-area: colorful; }
.f-rabbits { grid-area: rabbits; }
.f-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--charcoal);
  color: #fdf6e3;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  text-align: center;
  padding: 0.75rem;
}
.f-cta:hover {
  background: var(--gold-deep);
}
.gallery-item figcaption,
.gallery-item .cap {
  padding: 0.65rem 0.8rem 0.9rem;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
}

/* About / made here */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.about-photos .wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-photos .tall {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.about-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ways to reach us — two large primary actions, two plain secondary
   info rows. Not four identical cards, and the email never sits inside
   a pill button where it would wrap awkwardly. */
.contact-cluster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  background: var(--charcoal);
  color: #fdf6e3;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem;
  border-top: 4px solid var(--teal);
  min-height: 130px;
}
.contact-action.call {
  border-top-color: var(--terracotta);
}
.contact-action:hover,
.contact-action:focus-visible {
  background: var(--gold-deep);
}
.ca-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
}
.ca-sub {
  color: #e6d8b8;
  font-size: 0.95rem;
}
.contact-secondary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.25rem 0 0.25rem 1.75rem;
  border-left: 1px solid var(--line);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ci-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--gold-deep);
}
.ci-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
}
a.ci-value:hover {
  color: var(--gold-deep);
  text-decoration: underline;
}
.ci-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  width: fit-content;
}
.fulfillment-note {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  color: var(--charcoal-soft);
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.9rem 0.2rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '\2212';
}
.faq-item p {
  padding: 0 0.2rem 1rem;
  color: var(--charcoal-soft);
  max-width: 68ch;
}

/* Final CTA */
.final-cta {
  position: relative;
  background: var(--charcoal);
  color: #fdf6e3;
  border-radius: var(--radius-lg);
  padding: 3.25rem 2.5rem;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--gold) 50%, var(--raspberry));
}
.final-cta h2 {
  color: #fff;
}
.final-cta p {
  color: #e6d8b8;
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .hero-ctas {
  justify-content: center;
}
.final-cta .btn-secondary {
  color: #fff;
  border-color: #fff;
}
.final-cta .btn-secondary:hover {
  background: #fff;
  color: var(--charcoal);
}

/* Footer */
.site-footer {
  background: var(--cream-alt);
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal-soft);
  margin-bottom: 0.8rem;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-grid a {
  color: var(--charcoal);
  text-decoration: none;
}
.footer-grid a:hover {
  text-decoration: underline;
}
.footer-note {
  color: var(--charcoal-soft);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

/* Page hero (interior pages) */
.page-hero {
  padding: 3rem 0 2.5rem;
  text-align: center;
}
.page-hero p {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
}

/* Contact — one clean two-column section, no cards, no icons */
.contact-simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.contact-simple-intro h2 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-simple-intro p {
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  max-width: 40ch;
  margin: 0;
}
.contact-simple-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-simple-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-simple-list li:first-child {
  border-top: 1px solid var(--line);
}
.cs-label {
  flex: 0 0 100px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  color: var(--red);
}
.contact-simple-list a {
  color: var(--navy);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  overflow-wrap: normal;
  word-break: normal;
  min-width: 0;
}
.contact-simple-list a:hover,
.contact-simple-list a:focus-visible {
  text-decoration: underline;
  color: var(--red);
}
.checklist {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
}
.checklist li {
  margin-bottom: 0.5rem;
}

/* 404 */
.error-page {
  padding: 5rem 0;
  text-align: center;
}
.error-page .code {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-soft);
  margin: 0;
  -webkit-text-stroke: 2px var(--gold-deep);
}
.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Lightbox dialog */
.lightbox {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: min(90vw, 900px);
  max-height: 85vh;
  background: var(--card);
}
.lightbox::backdrop {
  background: rgba(20, 16, 10, 0.72);
}
.lightbox-inner {
  position: relative;
}
.lightbox-inner img {
  max-height: 75vh;
  width: 100%;
  object-fit: contain;
  background: #111;
}
.lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.lightbox figcaption {
  padding: 0.9rem 1.2rem;
  color: var(--charcoal-soft);
}

/* Responsive */
@media (max-width: 980px) {
  .main-nav ul {
    gap: 1.1rem;
  }
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .offer {
    padding: 0;
    border-left: none;
    max-width: 46ch;
  }
  .offer .thumb {
    max-width: 360px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-simple {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .contact-cluster {
    grid-template-columns: 1fr;
  }
  .contact-secondary {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 1.5rem 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 80px;
  }
  .main-nav {
    width: 100%;
    justify-content: flex-end;
  }
  .main-nav > ul,
  .main-nav > a.btn {
    display: none;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .nav-toggle summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    border: 2px solid var(--charcoal);
    border-radius: 4px;
    padding: 0.55rem 1.1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .nav-toggle summary::-webkit-details-marker {
    display: none;
  }
  .nav-toggle[open] summary {
    background: var(--charcoal);
    color: #fff;
  }
  .nav-toggle .menu-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 1rem 1.25rem 1.5rem;
  }
  .nav-toggle .menu-panel ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }
  .nav-toggle .menu-panel a:not(.btn) {
    font-size: 1.05rem;
  }
  .site-header .container {
    position: relative;
    flex-wrap: nowrap;
  }
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-split {
    min-height: 0;
    padding: 3.5rem 0;
  }
  .hero-split::before,
  .hero-split::after {
    height: 60px;
  }
  .hero-split-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.75rem;
  }
  .hero-split-logo {
    max-width: 200px;
    margin: 0 auto;
  }
  .hero-split-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-split-copy p.hero-tournament-message {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-split-copy .hero-services {
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
  }
  .hero-services span + span::before {
    content: none;
  }
  .hero-split-copy h1 {
    font-size: clamp(2.125rem, 8vw, 2.375rem);
  }
  .hero-collage {
    grid-template-columns: 1fr 1fr;
  }
  .hero-collage .tile-lead {
    aspect-ratio: 16 / 10;
  }
  .hero-collage .tile-shirt {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }
  .hero-collage .tile-stack {
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .hero-collage .tile-stack .tile {
    aspect-ratio: 4 / 3;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Process — vertical progression with a rule running down the left */
  .steps {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-left: 0.25rem;
  }
  .steps::before {
    top: 0;
    bottom: 27px;
    left: 26px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    align-items: start;
  }
  .step::before {
    margin-bottom: 0;
    grid-row: 1 / -1;
  }
  .step h3, .step p {
    grid-column: 2;
  }
  .featured-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 52vw repeat(3, auto);
    grid-template-areas:
      "lead lead"
      "keychain family"
      "colorful rabbits"
      "cta cta";
  }
  .featured-collage .f-keychain,
  .featured-collage .f-family,
  .featured-collage .f-colorful,
  .featured-collage .f-rabbits {
    aspect-ratio: 1 / 1;
  }
  .f-cta {
    padding: 1.25rem;
  }
  .contact-primary {
    grid-template-columns: 1fr;
  }
  .contact-simple-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .cs-label {
    flex: none;
  }
  .split-section-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .split-reverse .split-media,
  .split-reverse .split-copy {
    order: 0;
  }
  .partner-band {
    padding: 2.5rem 0;
    min-height: 0;
  }
  .partner-band-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .partner-band-copy {
    text-align: center;
  }
  .partner-band-reverse .partner-band-media,
  .partner-band-reverse .partner-band-copy {
    order: 0;
  }
  .partner-band-media img {
    max-width: 220px;
    margin: 0 auto;
  }
  .summit-band {
    padding: 3.5rem 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .final-cta {
    padding: 2.25rem 1.5rem;
  }
  .brand-logo {
    height: 58px;
  }
}

@media (max-width: 460px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
