@font-face {
  font-family: "WeatheredSF";
  src: url("../fonts/WeatheredSF.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #171616;
  --ink-soft: #242321;
  --paper: #f3eadc;
  --bone: #fbf8f1;
  --sand: #dfd0b8;
  --leather: #965329;
  --leather-dark: #65361f;
  --copper: #d09255;
  --sage: #6f7b68;
  --sage-dark: #3e4a40;
  --line: rgba(34, 31, 27, 0.18);
  --white-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 50px rgba(19, 16, 12, 0.22);
  --font-serif: "WeatheredSF", "Weathered SF", Georgia, "Times New Roman", serif;
  --font-sans: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--bone);
  color: var(--ink);
  border: 1px solid var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

.seo-strip {
  background: #e9dfd0;
  border-bottom: 1px solid rgba(34, 31, 27, 0.12);
  color: #5e574f;
}

.seo-strip p {
  width: min(100% - 36px, 1320px);
  margin: 0 auto;
  padding: 0.38rem 0;
  font-size: 0.72rem;
  font-weight: 550;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(19, 18, 17, 0.96);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(100% - 36px, 1320px);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 142px;
}

.brand img {
  width: 132px;
  height: auto;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #f9f3e8;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a {
  opacity: 0.88;
  transition: color 160ms ease, opacity 160ms ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--copper);
  opacity: 1;
}

.nav-cta {
  padding: 0.82rem 1.1rem;
  border: 1px solid var(--copper);
  color: var(--copper);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-line);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
}

.section {
  padding: clamp(58px, 7vw, 108px) 0;
}

main section[id] {
  scroll-margin-top: 104px;
}

.section-tight {
  padding: clamp(44px, 5vw, 72px) 0;
}

.wrap {
  width: min(100% - 36px, 1240px);
  margin: 0 auto;
}

.narrow {
  width: min(100% - 36px, 920px);
  margin: 0 auto;
}

.section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0;
}

.section-title.small {
  font-size: clamp(1.9rem, 4vw, 3.25rem);
}

.section-lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(23, 22, 22, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.overline {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dark .overline {
  color: var(--copper);
}

.dark {
  background: var(--ink);
  color: #fbf8f1;
}

.dark .section-lead,
.dark p {
  color: rgba(251, 248, 241, 0.72);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.86rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--leather);
  border-color: var(--leather);
  color: #fff7ea;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--leather-dark);
  border-color: var(--leather-dark);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff7ea;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--copper);
  color: var(--copper);
}

.btn-light {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-light:hover,
.btn-light:focus-visible {
  border-color: var(--leather);
  color: var(--leather);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--leather);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.link-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.link-arrow:hover svg,
.link-arrow:focus-visible svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: clamp(660px, 86vh, 840px);
  display: grid;
  align-items: stretch;
  background: #171514;
  color: #fff8ed;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(13, 12, 11, 0.96) 0%, rgba(13, 12, 11, 0.84) 36%, rgba(13, 12, 11, 0.42) 66%, rgba(13, 12, 11, 0.1) 100%),
    linear-gradient(180deg, rgba(13, 12, 11, 0.22) 0%, rgba(13, 12, 11, 0.08) 48%, rgba(13, 12, 11, 0.36) 100%);
}

.hero::after {
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(13, 12, 11, 0), rgba(13, 12, 11, 0.62));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #171514;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus-x, center) var(--focus-y, center);
  opacity: 0;
  filter: grayscale(1) sepia(0.22) contrast(1.05) brightness(0.9);
  transform: scale(1.02);
  animation: hero-image-cycle 40s infinite;
}

.hero-bg img:nth-child(2) {
  animation-delay: 8s;
}

.hero-bg img:nth-child(3) {
  animation-delay: 16s;
}

.hero-bg img:nth-child(4) {
  animation-delay: 24s;
}

.hero-bg img:nth-child(5) {
  animation-delay: 32s;
}

@keyframes hero-image-cycle {
  0%,
  17% {
    opacity: 1;
    transform: scale(1.02);
  }

  23%,
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

.hero-inner {
  width: min(100% - 36px, 1320px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(46px, 6vw, 82px) 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.6vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 700;
  overflow-wrap: break-word;
}

.hero-sub {
  margin: 18px 0 0;
  max-width: 600px;
  color: #f5d8b7;
  font-size: clamp(1.03rem, 1.7vw, 1.42rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-text {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 248, 237, 0.82);
  font-size: 1.08rem;
}

.category-band {
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.9), rgba(243, 234, 220, 0.96)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.section-heading-centered {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading-centered .section-title {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.section-heading-centered .section-title::before,
.section-heading-centered .section-title::after {
  content: "";
  display: block;
  width: clamp(44px, 8vw, 110px);
  height: 1px;
  background: var(--leather);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.category-tile {
  display: grid;
  gap: 12px;
  text-align: center;
}

.category-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid rgba(31, 27, 22, 0.16);
  box-shadow: 0 10px 28px rgba(55, 42, 27, 0.12);
  background: #28231d;
}

.category-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 180ms ease;
}

.category-tile:hover img,
.category-tile:focus-visible img {
  transform: scale(1.04);
}

.category-image-title {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0), rgba(20, 18, 16, 0.9));
  color: #fff7ea;
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.category-tile h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-tile p {
  margin: -8px auto 0;
  max-width: 210px;
  color: rgba(23, 22, 22, 0.68);
  font-size: 0.93rem;
  line-height: 1.42;
}

.work-section {
  background: var(--ink);
  color: var(--bone);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.work-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: start;
}

.work-layout .section-title {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

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

.work-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #2b2824;
}

.work-gallery img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.work-gallery a:hover img,
.work-gallery a:focus-visible img {
  transform: scale(1.045);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.76fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.story-grid.reverse {
  grid-template-columns: minmax(360px, 0.76fr) minmax(0, 0.94fr);
}

.story-copy p {
  max-width: 710px;
}

.story-copy p:not(.overline) {
  color: rgba(23, 22, 22, 0.72);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: var(--shadow);
  background: #28231d;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-frame.tall img {
  aspect-ratio: 3 / 3.6;
}

.holster-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(190px, 0.82fr);
  grid-template-rows: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.holster-proof-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 27, 22, 0.16);
  border-radius: 5px;
  background: #2b2824;
  box-shadow: 0 16px 42px rgba(50, 38, 24, 0.14);
}

.holster-proof-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.holster-proof-main {
  grid-row: 1 / span 3;
  min-height: 430px;
}

.holster-proof-main img {
  object-position: center center;
}

.holster-proof-item img {
  object-position: center center;
}

.holster-proof-grid figcaption {
  position: absolute;
  inset: auto 10px 10px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 20px);
  padding: 6px 8px;
  background: rgba(18, 16, 14, 0.82);
  color: #fff8ed;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.owner-points {
  background: #fffaf1;
  border-top: 1px solid var(--line);
}

.owner-points-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.owner-point {
  padding: 20px;
  border: 1px solid rgba(31, 27, 22, 0.16);
  border-radius: 5px;
  background: var(--bone);
}

.owner-point h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.23rem;
  line-height: 1.08;
}

.owner-point p {
  margin: 0;
  color: rgba(23, 22, 22, 0.72);
  font-size: 0.94rem;
}

.owner-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--leather);
  background: #f3eadc;
  color: rgba(23, 22, 22, 0.74);
}

.owner-note strong {
  color: var(--ink);
}

.process-band {
  background: #efe2cf;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(31, 27, 22, 0.22);
  border-bottom: 1px solid rgba(31, 27, 22, 0.22);
}

.process-step {
  padding: 28px 28px 30px;
  border-right: 1px solid rgba(31, 27, 22, 0.22);
}

.process-step:last-child {
  border-right: 0;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--leather-dark);
  color: #fff4e4;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.process-step h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.34rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: rgba(23, 22, 22, 0.72);
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  min-height: 360px;
  background: var(--ink);
  color: var(--bone);
}

.split-cta-image {
  overflow: hidden;
}

.split-cta-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.split-cta-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.52fr);
  gap: 34px;
  align-items: center;
  padding: clamp(36px, 6vw, 74px);
}

.split-cta-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.split-cta-copy p {
  margin: 16px 0 0;
  color: rgba(251, 248, 241, 0.76);
}

.footer-mark {
  justify-self: end;
  text-align: center;
  color: rgba(251, 248, 241, 0.74);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-mark img {
  width: 96px;
  margin: 0 auto 16px;
  opacity: 0.9;
}

.site-footer {
  padding: clamp(42px, 6vw, 72px) 0 24px;
  background: #11100f;
  color: rgba(251, 248, 241, 0.68);
  font-size: 0.86rem;
}

.footer-grid {
  width: min(100% - 36px, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(360px, 1.4fr) minmax(250px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 18px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff8ed;
  max-width: 260px;
}

.footer-logo img {
  width: 78px;
  height: auto;
  flex: 0 0 auto;
}

.footer-logo span {
  display: grid;
  gap: 3px;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-logo small {
  color: rgba(251, 248, 241, 0.62);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.28em;
}

.footer-brand-block p,
.footer-contact p {
  margin: 0;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.footer-column {
  display: grid;
  gap: 9px;
}

.footer-column h2,
.footer-contact h2 {
  margin: 0 0 6px;
  color: #fff8ed;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  letter-spacing: 0;
}

.footer-column a,
.footer-contact a,
.footer-bottom a {
  color: #f2c08b;
}

.footer-column a {
  width: fit-content;
  color: rgba(251, 248, 241, 0.76);
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--copper);
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-contact-item {
  display: grid;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item strong {
  color: #fff8ed;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-button {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 0.9rem;
  border: 1px solid var(--copper);
  color: var(--copper) !important;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-bottom {
  width: min(100% - 36px, 1240px);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(251, 248, 241, 0.54);
}

.page-hero {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(58px, 8vw, 118px) 0 clamp(52px, 7vw, 92px);
  overflow: hidden;
}

.page-hero-grid {
  width: min(100% - 36px, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.76fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.7rem, 6vw, 6.3rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(251, 248, 241, 0.75);
  font-size: 1.08rem;
}

.page-hero .image-frame img {
  aspect-ratio: 1.16 / 1;
}

.page-hero .image-frame.holster-hero-media img {
  aspect-ratio: 5 / 6;
}

.form-intro {
  padding: clamp(26px, 3vw, 40px) 0 clamp(24px, 2.5vw, 34px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.form-intro-inner {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.form-intro .breadcrumb {
  margin-bottom: 12px;
  color: rgba(23, 22, 22, 0.62);
}

.form-intro h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.form-intro p {
  max-width: 820px;
  margin: 12px 0 0;
  color: rgba(23, 22, 22, 0.74);
  font-size: 1.02rem;
}

.form-section {
  padding-top: clamp(28px, 4vw, 48px);
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(251, 248, 241, 0.68);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--copper);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.feature-item {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.feature-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.feature-item p {
  margin: 0;
  color: rgba(23, 22, 22, 0.7);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.portfolio-card {
  overflow: hidden;
  border-radius: 5px;
  background: #efe2cf;
  border: 1px solid rgba(31, 27, 22, 0.14);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.portfolio-card h3 {
  margin: 0;
  padding: 14px 14px 2px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.portfolio-card p {
  margin: 0;
  padding: 0 14px 16px;
  color: rgba(23, 22, 22, 0.68);
  font-size: 0.9rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-options {
  display: grid;
  gap: 16px;
}

.contact-option {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fffaf1;
}

.contact-option h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
}

.contact-option p {
  margin: 0 0 14px;
  color: rgba(23, 22, 22, 0.7);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
}

.form-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf1;
  box-shadow: 0 18px 40px rgba(50, 38, 24, 0.08);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label,
.field .field-label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(31, 27, 22, 0.22);
  border-radius: 3px;
  background: #fffdf8;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--leather);
  box-shadow: 0 0 0 3px rgba(150, 83, 41, 0.14);
}

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

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(31, 27, 22, 0.16);
  border-radius: 3px;
  background: #fffdf8;
  color: rgba(23, 22, 22, 0.78);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.choice-grid input {
  width: 16px;
  height: 16px;
  min-height: auto;
  accent-color: var(--leather);
}

.captcha-field {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 27, 22, 0.14);
}

.captcha-challenge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.captcha-challenge img {
  width: 260px;
  max-width: 100%;
  height: 72px;
  border: 1px solid rgba(31, 27, 22, 0.24);
  border-radius: 3px;
  background: #f7f1e7;
  object-fit: cover;
}

.captcha-refresh {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(31, 27, 22, 0.42);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.captcha-refresh:hover,
.captcha-refresh:focus-visible {
  border-color: var(--leather);
  color: var(--leather-dark);
}

.field .captcha-answer {
  max-width: 260px;
  text-transform: uppercase;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.captcha-status {
  margin: 0;
  color: rgba(23, 22, 22, 0.62);
  font-size: 0.84rem;
}

.captcha-field.is-loading .captcha-challenge img {
  opacity: 0.5;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(23, 22, 22, 0.62);
  font-size: 0.9rem;
}

.quote-aside {
  display: grid;
  gap: 18px;
}

.quote-aside-card {
  padding: 22px;
  border: 1px solid rgba(31, 27, 22, 0.14);
  border-radius: 6px;
  background: #efe2cf;
}

.quote-aside-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.quote-aside-card .section-title.small {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.quote-aside-card p {
  margin: 0;
  color: rgba(23, 22, 22, 0.7);
}

.brief-output {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(150, 83, 41, 0.28);
  border-radius: 6px;
  background: #f6ead8;
}

.brief-output.is-error {
  border-color: rgba(139, 39, 31, 0.45);
  background: #f7e5df;
}

form.is-submitting {
  opacity: 0.82;
}

form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.brief-output[hidden] {
  display: none;
}

.brief-output h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.brief-output textarea {
  width: 100%;
  min-height: 220px;
  margin-top: 12px;
  padding: 13px;
  border: 1px solid rgba(31, 27, 22, 0.2);
  border-radius: 3px;
  background: #fffdf8;
  color: var(--ink);
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.home-quote-band {
  background: var(--bone);
  border-top: 1px solid var(--line);
}

.home-quote-band .form-card {
  padding: clamp(18px, 2vw, 24px);
}

.home-quote-band .form-grid {
  column-gap: 16px;
  row-gap: 12px;
}

.home-quote-band .field {
  gap: 5px;
}

.home-quote-band .field input,
.home-quote-band .field select,
.home-quote-band .field textarea {
  min-height: 44px;
  padding: 9px 11px;
}

.home-quote-band .field textarea {
  min-height: 104px;
}

.home-quote-band .captcha-field {
  margin-top: 14px;
  padding-top: 14px;
}

.home-quote-band .form-note {
  margin-top: 8px;
}

.home-quote-band .form-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.home-quote-band .form-actions .btn {
  width: 100%;
  min-width: 0;
  padding-right: 8px;
  padding-left: 8px;
  font-size: 0.74rem;
  white-space: nowrap;
}

@media (min-width: 1180px) {
  .home-quote-band .form-shell {
    align-items: center;
  }

  .home-quote-band .story-copy {
    padding: 20px 0;
  }

  .home-quote-band .story-copy .section-lead {
    margin-top: 22px;
  }

  .home-quote-band .note-list {
    gap: 18px;
    margin-top: 30px;
  }

  .home-quote-band .captcha-field {
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 5px;
  }

  .home-quote-band .captcha-field > .field-label {
    grid-column: 1 / -1;
  }

  .home-quote-band .captcha-challenge {
    grid-row: 2 / 5;
    grid-column: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    align-content: start;
  }

  .home-quote-band .captcha-challenge img {
    width: 220px;
    height: auto;
    aspect-ratio: 260 / 72;
  }

  .home-quote-band .captcha-refresh {
    min-height: 36px;
    padding: 0 12px;
    justify-self: start;
  }

  .home-quote-band .captcha-field > label {
    grid-row: 2;
    grid-column: 2;
  }

  .home-quote-band .field .captcha-answer {
    grid-row: 3;
    grid-column: 2;
    max-width: none;
  }

  .home-quote-band .captcha-status {
    grid-row: 4;
    grid-column: 2;
    line-height: 1.35;
  }
}

.note-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.note-list li {
  position: relative;
  padding-left: 24px;
}

.note-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-bg img {
    animation: none !important;
    opacity: 0;
    transform: scale(1.02);
  }

  .hero-bg img:first-child {
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 10px;
  }

  .nav-cta {
    display: none;
  }

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

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

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

  .work-layout,
  .story-grid,
  .story-grid.reverse,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .holster-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .holster-proof-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }

  .holster-proof-item {
    min-height: 170px;
  }

  .story-grid.reverse .image-frame {
    order: 2;
  }

  .split-cta {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-block,
  .footer-contact {
    max-width: 620px;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    min-height: 66px;
  }

  .brand img {
    width: 112px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 18px 22px;
    background: rgba(19, 18, 17, 0.98);
    border-bottom: 1px solid var(--white-line);
  }

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

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.92rem;
  }

  .seo-strip p {
    width: min(100% - 28px, 1320px);
    padding: 0.34rem 0;
    font-size: 0.66rem;
    line-height: 1.35;
    white-space: normal;
    text-wrap: balance;
  }

  .nav-cta {
    display: inline-flex;
    margin-top: 12px;
    justify-content: center;
    border-bottom: 1px solid var(--copper) !important;
  }

  .hero {
    min-height: clamp(560px, 78vh, 760px);
  }

  .hero-inner {
    padding: 64px 0 78px;
  }

  .category-grid,
  .feature-list,
  .process-grid,
  .portfolio-grid,
  .owner-points-grid,
  .split-cta-copy,
  .form-shell,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: 0;
    border-bottom: 1px solid rgba(31, 27, 22, 0.22);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

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

  .section-heading-centered .section-title::before,
  .section-heading-centered .section-title::after {
    display: none;
  }

  .footer-mark {
    justify-self: start;
    text-align: left;
  }

  .footer-mark img {
    margin-left: 0;
  }

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

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

@media (max-width: 540px) {
  .wrap,
  .narrow,
    .nav-wrap,
    .hero-inner,
    .page-hero-grid,
    .footer-grid,
    .footer-bottom {
    width: min(100% - 28px, 1240px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 8.8vw, 2.45rem);
    line-height: 0.95;
  }

  .form-intro {
    padding: 24px 0 22px;
  }

  .form-intro h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .form-intro p {
    font-size: 0.96rem;
  }

  .form-section {
    padding-top: 24px;
  }

  .hero-sub {
    max-width: 20rem;
    font-size: 0.86rem;
    letter-spacing: 0.025em;
    line-height: 1.45;
  }

  .hero-text {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .work-gallery {
    grid-template-columns: 1fr;
  }

  .holster-proof-grid {
    grid-template-columns: 1fr;
  }

  .holster-proof-main,
  .holster-proof-item {
    min-height: 260px;
  }

  .footer-sitemap {
    grid-template-columns: 1fr;
  }
}
