@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --black: #171a18;
  --paper: #f6f1e8;
  --blue: #2e6f7e;
  --copper: #b66a3c;
  --lichen: #8fa05b;
  --silver: #c7cdd1;
  --ember: #e4552e;
  --white: #ffffff;
  --muted: #626965;
  --line: rgba(23, 26, 24, 0.14);
  --shadow: 0 20px 60px rgba(23, 26, 24, 0.12);
  --deep-shadow: 0 28px 90px rgba(23, 26, 24, 0.2);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font-body: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  --font-display: "Barlow Condensed", "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  color: var(--black);
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f8f4ed 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--white);
  background: var(--black);
  font-size: .88rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(228, 85, 46, .45);
  outline-offset: 3px;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4.6vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(23, 26, 24, 0.04);
}

.brand img {
  display: block;
  width: 188px;
  height: auto;
}

.nav {
  display: flex;
  gap: clamp(14px, 1.7vw, 24px);
  margin-left: auto;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 0;
  color: rgba(23, 26, 24, .78);
  white-space: nowrap;
}

.nav a[aria-current="page"] {
  color: var(--black);
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ember);
}

.nav a,
.header-cta,
.btn,
.product-grid a,
.product-link {
  text-decoration: none;
  transition:
    color .22s var(--ease),
    background-color .22s var(--ease),
    border-color .22s var(--ease),
    box-shadow .22s var(--ease),
    transform .22s var(--ease);
}

.nav a:hover,
.product-grid a:hover,
.product-link:hover {
  color: var(--ember);
}

.header-cta,
.btn,
.quote-form button {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  line-height: 1.1;
  text-transform: uppercase;
}

.header-cta,
.primary,
.quote-form button {
  color: var(--white);
  background: var(--ember);
}

.header-cta:hover,
.primary:hover,
.quote-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(228, 85, 46, .24);
}

.secondary {
  color: var(--black);
  background: var(--paper);
  border: 1px solid var(--line);
}

.secondary:hover {
  border-color: rgba(23, 26, 24, .32);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(23, 26, 24, .08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: clamp(28px, 4.8vw, 64px);
  min-height: clamp(600px, calc(82dvh - 72px), 760px);
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 64px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(246, 241, 232, .72), rgba(255, 255, 255, .94) 44%, rgba(46, 111, 126, .1)),
    var(--white);
}

.page-hero {
  display: grid;
  align-items: center;
  min-height: clamp(420px, 58dvh, 500px);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 64px);
  background: var(--white);
}

.media-page {
  grid-template-columns: minmax(0, .76fr) minmax(320px, .62fr);
  gap: clamp(28px, 5vw, 70px);
  overflow: hidden;
}

.page-hero > div {
  max-width: 920px;
}

.page-hero p {
  max-width: 720px;
  font-size: clamp(1.1rem, .65vw + .98rem, 1.32rem);
}

.metal-page {
  background:
    linear-gradient(110deg, rgba(255,255,255,.92), rgba(255,255,255,.78)),
    linear-gradient(135deg, #e6eaed, #fff 46%, #b8c0c5);
}

.apparel-page {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, .94), rgba(246, 241, 232, .72)),
    var(--white);
}

.gallery-page {
  background:
    linear-gradient(110deg, rgba(255,255,255,.94), rgba(46,111,126,.12)),
    var(--white);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 0.94;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5.8vw, 5.05rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.45rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.45rem, 2.1vw, 1.95rem);
  font-weight: 800;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, .24vw + .96rem, 1.08rem);
  line-height: 1.65;
}

.hero-copy > p {
  max-width: 680px;
  font-size: clamp(1.12rem, .5vw + 1rem, 1.26rem);
}

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

.trust-line {
  margin-top: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .45fr);
  gap: 14px;
  align-items: stretch;
  min-height: 540px;
}

.hero-photo,
.page-hero-photo,
.card-photo,
.gallery-photo,
.showcase-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
}

.hero-photo,
.page-hero-photo {
  box-shadow: var(--deep-shadow);
}

.hero-photo-large {
  min-height: 540px;
}

.hero-photo-stack {
  display: grid;
  gap: 14px;
}

.hero-photo img,
.page-hero-photo img,
.card-photo img,
.gallery-photo img,
.showcase-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .55s var(--ease), filter .55s var(--ease);
}

.hero-photo:hover img,
.page-hero-photo:hover img,
.card-photo:hover img,
.gallery-photo:hover img,
.showcase-strip figure:hover img {
  transform: scale(1.025);
}

.page-hero-photo {
  min-height: 390px;
  aspect-ratio: 4 / 3;
}

.hero-board {
  position: relative;
  min-height: 560px;
}

.mockup {
  position: absolute;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.mockup span {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
}

.shirt {
  top: 18px;
  left: 26px;
  width: 300px;
  height: 360px;
  color: var(--white);
  background: var(--blue);
  clip-path: polygon(23% 0, 38% 9%, 62% 9%, 77% 0, 100% 18%, 86% 39%, 78% 32%, 78% 100%, 22% 100%, 22% 32%, 14% 39%, 0 18%);
}

.cap {
  right: 4px;
  top: 92px;
  width: 230px;
  height: 132px;
  color: var(--white);
  background: var(--black);
  border-radius: 110px 110px 34px 34px;
}

.metal-print {
  right: 22px;
  bottom: 48px;
  width: 330px;
  height: 250px;
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 34%),
    linear-gradient(155deg, #d8dde0, #ffffff 44%, #aeb7bd);
  border: 10px solid var(--white);
}

.split-products,
.process,
.quote,
.catalog-detail,
.pricing,
.quote-ready,
.decision-guide,
.confirmation-flow {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 64px);
}

.confirmation-flow {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(260px, 0.6fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.section-heading p {
  max-width: 660px;
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.product-grid article {
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  transition: border-color .24s var(--ease), box-shadow .24s var(--ease), transform .24s var(--ease);
}

.product-grid article:hover,
.detail-grid article:hover,
.pricing-grid article:hover,
.gallery-grid article:hover,
.guide-grid article:hover,
.quote-ready-grid article:hover {
  border-color: rgba(23, 26, 24, .26);
  box-shadow: 0 16px 46px rgba(23, 26, 24, .075);
  transform: translateY(-2px);
}

.card-photo {
  aspect-ratio: 16 / 10;
  margin: calc(clamp(24px, 3.5vw, 36px) * -1) calc(clamp(24px, 3.5vw, 36px) * -1) 24px;
  border-radius: 8px 8px 0 0;
}

.product-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.5;
}

.product-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 16px;
  color: var(--ember);
  font-weight: 900;
}

.category-band {
  padding: clamp(46px, 6vw, 68px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(46, 111, 126, .94), rgba(23, 26, 24, .96)),
    var(--blue);
}

.category-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 1px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.2);
  overflow-x: auto;
}

.category-row a {
  min-height: 108px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(23, 26, 24, .26);
  font-weight: 900;
  font-size: .9rem;
  text-decoration: none;
  transition: background-color .22s var(--ease), color .22s var(--ease);
}

.category-row a:hover {
  color: var(--black);
  background: var(--paper);
}

.showcase-strip {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  gap: 14px;
  padding: 14px clamp(18px, 5vw, 64px) clamp(54px, 8vw, 96px);
  background: var(--black);
}

.showcase-strip figure {
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, .12);
}

.showcase-strip figure:nth-child(2) {
  transform: translateY(34px);
}

.detail-grid,
.pricing-grid,
.gallery-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 30px);
}

.detail-grid article,
.pricing-grid article,
.gallery-grid article,
.guide-grid article {
  min-height: 204px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  transition: border-color .24s var(--ease), box-shadow .24s var(--ease), transform .24s var(--ease);
}

.detail-grid p,
.pricing-grid p,
.guide-grid p {
  font-size: .98rem;
}

.detail-grid span,
.guide-grid span {
  display: block;
  margin-top: 16px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
}

.product-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 16px;
  color: var(--ember);
  font-size: .86rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.decision-guide {
  background: var(--paper);
}

.quote-ready {
  background: var(--white);
}

.quote-ready-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 30px);
}

.quote-ready-grid article {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(24px, 3.4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), rgba(246, 241, 232, .42));
  transition: border-color .24s var(--ease), box-shadow .24s var(--ease), transform .24s var(--ease);
}

.quote-ready-grid.compact article {
  min-height: 240px;
}

.quote-ready-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-ready-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.quote-ready-grid p {
  font-size: .98rem;
}

.quote-ready-grid .product-link {
  margin-top: auto;
  padding-top: 18px;
}

.guide-grid article {
  min-height: 260px;
}

.guide-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--copper);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.portfolio-cta-photo {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 26, 24, .9), rgba(23, 26, 24, .58)),
    url("assets/photos/gallery-wall-print.jpg") center / cover;
}

.portfolio-cta-photo p {
  color: rgba(255, 255, 255, .78);
}

.portfolio-cta-photo .secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .32);
}

.portfolio-cta p {
  max-width: 680px;
}

.gallery-plan {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 64px);
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin-bottom: 20px;
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}

.gallery-photo {
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
}

.gallery-meta {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.gallery-meta div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: baseline;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.gallery-meta dt {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-meta dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.sample-shot-plan {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(300px, .8fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  padding: clamp(58px, 7vw, 92px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background: var(--black);
}

.sample-shot-plan p {
  color: rgba(255, 255, 255, .78);
}

.sample-shot-plan ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: sample;
}

.sample-shot-plan li {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 98px;
  padding: 20px 20px 20px 78px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.sample-shot-plan li::before {
  counter-increment: sample;
  content: "0" counter(sample);
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--ember);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}

.sample-shot-plan strong,
.sample-shot-plan span {
  display: block;
}

.sample-shot-plan span {
  color: rgba(255, 255, 255, .72);
  line-height: 1.45;
}

.shirt-swatch { background: var(--blue); }
.hoodie-swatch { background: var(--black); }
.cap-swatch { background: linear-gradient(135deg, var(--black), #2c342e); }
.sock-swatch { background: linear-gradient(135deg, var(--lichen), var(--blue)); }
.metal-swatch { color: var(--black); background: linear-gradient(135deg, #ffffff, #aeb7bd); }
.package-swatch { background: linear-gradient(135deg, #050606, #343a35); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 30px);
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 196px;
  padding: clamp(22px, 3vw, 30px);
  border-top: 5px solid var(--copper);
  background: var(--paper);
}

.steps li::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 30px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.steps span {
  color: var(--muted);
  line-height: 1.55;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(58px, 7vw, 92px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(46, 111, 126, .98), rgba(23, 26, 24, .96)),
    var(--blue);
}

.proof p {
  color: rgba(255, 255, 255, 0.84);
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list span {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 900;
}

.premium-media-section {
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(320px, .9fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background: var(--black);
}

.premium-media-copy p {
  color: rgba(255, 255, 255, .78);
}

.storyboard-frame {
  display: block;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  overflow: hidden;
  background: #101412;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .35);
  aspect-ratio: 16 / 10;
}

.storyboard-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing {
  background: var(--white);
}

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

.pricing-grid ul {
  color: var(--muted);
  line-height: 1.55;
}

.artwork {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, .65fr);
  gap: clamp(28px, 4vw, 46px);
  align-items: center;
  padding: clamp(58px, 7vw, 92px) clamp(18px, 5vw, 64px);
  background: var(--black);
}

.artwork h2,
.artwork p {
  color: var(--white);
}

.file-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.file-list span {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 1px solid rgba(255,255,255,.24);
  color: var(--white);
  font-weight: 900;
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  background: var(--paper);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding: clamp(20px, 3.5vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-card {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3.5vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-card p {
  font-size: .98rem;
}

.quote-page {
  min-height: calc(100dvh - 72px);
}

.mini-faq {
  display: grid;
  gap: 6px;
  max-width: 520px;
  margin-top: 24px;
  padding: 18px;
  border-left: 6px solid var(--copper);
  background: var(--white);
}

.mini-faq span,
.form-status {
  color: var(--muted);
  line-height: 1.5;
}

.privacy-note {
  margin: 0;
  font-size: 13px;
}

.privacy-note a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--blue);
  font-weight: 900;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.faq-list {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 64px);
  background: var(--paper);
}

.faq-list article {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.25;
}

.form-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 241, 232, .55);
}

.form-group legend {
  padding: 0 8px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
}

.field-help {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quote-form .consent {
  grid-template-columns: 32px 1fr;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-weight: 700;
}

.quote-form .consent input {
  width: 32px;
  height: 32px;
  margin: 0;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 12px;
  font: inherit;
  font-size: .96rem;
  color: var(--black);
  background: var(--white);
}

.wide,
.quote-form button,
.form-status {
  grid-column: 1 / -1;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: var(--black);
}

.footer a,
.proof-list a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-motion-enabled .reveal-ready {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .52s var(--ease), transform .52s var(--ease);
  }

  .reveal-motion-enabled .reveal-ready.reveal-in {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand img {
    width: 168px;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    margin-left: 0;
    gap: 18px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero,
  .media-page,
  .section-heading,
  .product-grid,
  .detail-grid,
  .pricing-grid,
  .gallery-grid,
  .guide-grid,
  .quote-ready-grid,
  .steps,
  .proof,
  .premium-media-section,
  .artwork,
  .quote,
  .showcase-strip,
  .sample-shot-plan {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-photo-large,
  .page-hero-photo {
    min-height: 300px;
  }

  .hero-photo-stack {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-strip figure:nth-child(2) {
    transform: none;
  }

  .hero-board {
    min-height: 420px;
  }

  .shirt {
    width: 210px;
    height: 260px;
    left: 0;
  }

  .cap {
    width: 170px;
    height: 98px;
  }

  .metal-print {
    width: 230px;
    height: 180px;
    right: 10px;
  }

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

  .form-group {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }

  .portfolio-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .header-cta {
    margin-left: auto;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .hero-copy > p,
  p {
    font-size: 1rem;
  }

  .category-row {
    grid-template-columns: repeat(5, 150px);
  }

  .hero-photo-stack {
    grid-template-columns: 1fr;
  }

  .hero-photo-large,
  .page-hero-photo,
  .showcase-strip figure {
    min-height: 240px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand img {
    width: 154px;
  }

  .header-cta,
  .btn,
  .quote-form button {
    min-height: 42px;
    padding: 12px 14px;
    font-size: 12px;
  }

  .section-heading {
    gap: 14px;
  }
}
