@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Oswald:wght@500;600;700&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;1,400&display=swap");

:root {
  --leather-950: #1a0f08;
  --leather-900: #2a1810;
  --leather-800: #3d2415;
  --leather-700: #5a3620;
  --leather-600: #7a4a2b;
  --tan-200: #e8d9c4;
  --tan-100: #f3ebde;
  --cream: #faf5ec;
  --brass: #c08a3e;
  --brass-hover: #a8762f;
  --brass-soft: rgba(192, 138, 62, 0.14);
  --brass-text: #7a5520;
  --text: #2a1c10;
  --text-muted: #6b5644;
  --text-on-dark: #f0e6d8;
  --text-on-dark-muted: #c4ad94;
  --container: 1120px;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(26, 15, 8, 0.12);
  --shadow-md: 0 10px 30px rgba(26, 15, 8, 0.18);
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-heading: "Oswald", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--brass);
  color: var(--leather-950);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
}

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

/* ── Top announcement bar ── */
.announce-bar {
  background: var(--leather-950);
  color: var(--tan-200);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  font-weight: 600;
}

/* ── Header ── */
.cl-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(42, 24, 16, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(192, 138, 62, 0.25);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.cl-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.cl-nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: padding 0.25s ease;
}

.cl-header.is-scrolled .cl-nav {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.cl-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  line-height: 1.1;
}

.cl-brand-emblem {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  transition: width 0.25s ease, height 0.25s ease;
}

.cl-header.is-scrolled .cl-brand-emblem {
  width: 32px;
  height: 32px;
}

.cl-brand-text {
  display: flex;
  flex-direction: column;
}

.cl-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  transition: font-size 0.25s ease;
}

.cl-header.is-scrolled .cl-brand-name {
  font-size: 1rem;
}

.cl-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-top: 0.1rem;
}

.cl-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.cl-nav-links a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s;
}

.cl-nav-links a:hover {
  color: var(--brass);
}

.cl-nav-cta {
  background: var(--brass);
  color: var(--leather-950) !important;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s;
}

.cl-nav-cta:hover {
  background: var(--brass-hover);
}

.cl-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(192, 138, 62, 0.4);
  border-radius: 6px;
  color: var(--brass);
  font-size: 1.1rem;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}

.cl-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--leather-900);
  padding: 0.5rem 1.5rem 1rem;
  border-top: 1px solid rgba(192, 138, 62, 0.2);
}

.cl-mobile-menu.open {
  display: flex;
}

.cl-mobile-menu a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cl-mobile-menu a:last-child {
  border-bottom: none;
}

@media (max-width: 860px) {
  .cl-nav-links {
    display: none;
  }
  .cl-menu-btn {
    display: block;
  }
  .cl-brand-sub {
    display: none;
  }
}

/* ── Hero ── */
.cl-hero {
  position: relative;
  min-height: clamp(520px, 85vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  padding: 5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.cl-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  z-index: 0;
}

.cl-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(26, 15, 8, 0.55) 0%, rgba(26, 15, 8, 0.78) 55%, rgba(26, 15, 8, 0.92) 100%),
    radial-gradient(ellipse 70% 60% at 50% 110%, rgba(192, 138, 62, 0.15), transparent);
  pointer-events: none;
}

.cl-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cl-hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid rgba(192, 138, 62, 0.45);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.cl-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 0 1.25rem;
}

.cl-hero h1 span {
  color: var(--brass);
}

.cl-hero p {
  font-size: 1.15rem;
  color: var(--text-on-dark-muted);
  max-width: 56ch;
  margin: 0 auto 2.25rem;
}

.cl-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}

.btn-primary {
  background: var(--brass);
  color: var(--leather-950);
  border: 1px solid var(--brass);
}

.btn-primary:hover {
  background: var(--brass-hover);
  border-color: var(--brass-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid rgba(240, 230, 216, 0.4);
}

.btn-ghost:hover {
  border-color: var(--brass);
  color: var(--brass);
}

/* ── Trust strip ── */
.cl-trust {
  background: var(--leather-900);
  color: var(--tan-200);
  padding: 1.4rem 1.5rem;
}

.cl-trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem 2rem;
  text-align: center;
}

.cl-trust-item {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: color 0.2s;
}

.cl-trust-item:hover {
  color: #fff;
}

.cl-trust-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brass);
  flex-shrink: 0;
}

/* ── Section dividers ── */
.section-divider {
  height: 1px;
  max-width: var(--container);
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192, 138, 62, 0.45) 20%,
    rgba(192, 138, 62, 0.45) 80%,
    transparent
  );
}

/* ── Sections ── */
.section {
  padding: 5rem 1.5rem;
}

.section-alt {
  background: var(--tan-100);
}

.section-dark {
  background: var(--leather-900);
  color: var(--text-on-dark);
}

.section-textured {
  position: relative;
  overflow: hidden;
}

.section-textured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("corbett-leather-bg-detail.png") center / cover no-repeat,
    var(--leather-900);
  opacity: 0.18;
  pointer-events: none;
}

.section-textured > .container {
  position: relative;
  z-index: 1;
}

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

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-text);
  margin: 0 0 0.65rem;
}

.section-dark .section-eyebrow {
  color: var(--brass);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0.85rem;
  line-height: 1.1;
}

.section-dark .section-title {
  color: #fff;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

.section-dark .section-subtitle {
  color: var(--text-on-dark-muted);
}

.prose-serif {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
}

/* ── Collections grid ── */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.collection-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.collection-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(26, 15, 8, 0.9) 0%, rgba(26, 15, 8, 0.2) 55%, rgba(26, 15, 8, 0.1) 100%);
  transition: opacity 0.25s;
}

.collection-card:hover::after {
  opacity: 0.92;
}

.collection-body {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: 100%;
}

.collection-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.35rem;
}

.collection-body p {
  font-size: 0.9rem;
  color: var(--tan-200);
  margin: 0 0 0.75rem;
}

.collection-cta {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}

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

@media (max-width: 900px) {
  .collection-grid--three {
    grid-template-columns: 1fr;
  }
}

.art-belts {
  background:
    radial-gradient(circle at 30% 25%, rgba(192, 138, 62, 0.3), transparent 60%),
    linear-gradient(150deg, #5a3620, #1a0f08);
}

.art-wallets,
.art-bags,
.art-stamps {
  background: var(--leather-900);
}

.art-stamps img {
  object-position: center 45%;
}

.stamp-feature-art img {
  object-fit: cover;
  object-position: center 40%;
}

.collection-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  transition: transform 0.4s ease;
}

.collection-card:hover .collection-art img {
  transform: scale(1.05);
}

/* ── Feature section ── */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-art {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 35% 30%, rgba(192, 138, 62, 0.35), transparent 55%),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.12) 0px, rgba(0, 0, 0, 0.12) 1px, transparent 1px, transparent 14px),
    linear-gradient(150deg, #5a3620, #1a0f08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.feature-art--product {
  padding: 0;
  overflow: hidden;
}

.feature-art--product img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.feature-art--photo {
  padding: 0;
  overflow: hidden;
  background: #1a0f08;
}

.feature-art--photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.feature-text .section-eyebrow {
  text-align: left;
}

.feature-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 1.1rem;
}

.feature-text p {
  color: var(--text-muted);
  margin: 0 0 1.1rem;
  font-size: 1.02rem;
}

.feature-text .prose-serif {
  color: var(--text);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.feature-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--brass);
  border-radius: 2px;
  transform: rotate(45deg);
}

@media (max-width: 800px) {
  .feature {
    grid-template-columns: 1fr;
  }
  .feature-art {
    min-height: 260px;
  }
}

/* ── Wallet workshop feature ── */
.wallet-workshop-art img {
  object-fit: cover;
  object-position: center 30%;
}

.feature--reverse {
  margin-top: 4rem;
}

@media (min-width: 801px) {
  .feature--reverse {
    direction: rtl;
  }
  .feature--reverse > * {
    direction: ltr;
  }
}

.wallet-sentinel,
.wallet-blueline {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(192, 138, 62, 0.25);
}

.belt-feature-art img {
  object-fit: cover;
  object-position: center center;
}

.art-wallets img,
.art-belts img {
  object-position: center 35%;
}

.wallet-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.belt-gallery {
  margin-top: 2.5rem;
}

.wallet-gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--leather-900);
  box-shadow: var(--shadow-sm);
}

.wallet-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.35s ease;
}

.wallet-gallery-item:hover img {
  transform: scale(1.04);
}

.wallet-gallery-item figcaption {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-text);
  padding: 0.75rem 0.9rem 0.95rem;
  background: #fff;
}

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

@media (max-width: 520px) {
  .wallet-gallery {
    grid-template-columns: 1fr;
  }
  .wallet-gallery-item img {
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wallet-gallery-item img {
    transition: none;
  }
}

/* ── Process strip ── */
.process-strip {
  position: relative;
  overflow: hidden;
  background: var(--leather-950);
  color: var(--text-on-dark);
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(192, 138, 62, 0.2);
  border-bottom: 1px solid rgba(192, 138, 62, 0.2);
}

.process-strip-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(26, 15, 8, 0.84), rgba(26, 15, 8, 0.92)),
    url("corbett-leather-wallet-workshop.jpg") center / cover no-repeat;
}

.process-strip-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.process-step {
  flex: 1 1 160px;
  max-width: 220px;
  text-align: center;
  padding: 0 0.5rem;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(192, 138, 62, 0.5);
  color: var(--brass);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 0.4rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  margin: 0;
  line-height: 1.5;
}

.process-arrow {
  color: var(--brass);
  font-size: 1.25rem;
  padding-top: 0.5rem;
  opacity: 0.6;
}

@media (max-width: 700px) {
  .process-arrow {
    display: none;
  }
  .process-step {
    max-width: none;
    flex: 1 1 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1rem;
    text-align: left;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .process-step:last-child {
    border-bottom: none;
  }
  .process-num {
    grid-row: span 2;
    margin-bottom: 0;
  }
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(192, 138, 62, 0.25);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.value-card:hover {
  border-color: rgba(192, 138, 62, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.value-card svg {
  width: 2.6rem;
  height: 2.6rem;
  color: var(--brass);
  margin: 0 auto 1rem;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 0.6rem;
}

.value-card p {
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--tan-200);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-card p {
  margin: 0 0 1rem;
  color: var(--text);
  font-style: italic;
}

.testimonial-card footer {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass-text);
}

/* ── CTA banner ── */
.cta-banner {
  position: relative;
  color: var(--text-on-dark);
  text-align: center;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(26, 15, 8, 0.82), rgba(26, 15, 8, 0.9)),
    url("corbett-leather-duffel-bag-feature-styled.jpg") center / cover no-repeat;
  z-index: 0;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}

.cta-banner p {
  color: var(--text-on-dark-muted);
  max-width: 50ch;
  margin: 0 auto 2rem;
  font-size: 1.08rem;
}

/* ── Footer ── */
.cl-footer {
  background: var(--leather-950);
  color: var(--text-on-dark-muted);
  padding: 3.5rem 1.5rem 2rem;
}

.cl-footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
}

.cl-footer-emblem {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.cl-footer-brand .cl-brand-name {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.25rem;
}

.cl-footer-brand p {
  margin: 0.75rem 0 0;
  max-width: 38ch;
  font-size: 0.92rem;
}

.cl-footer-col h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1rem;
}

.cl-footer-col a {
  display: block;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.15s;
}

.cl-footer-col a:hover {
  color: #fff;
}

.cl-footer-bottom {
  max-width: var(--container);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
}

@media (max-width: 700px) {
  .cl-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collection-card,
  .collection-art img,
  .btn,
  .cl-header,
  .cl-nav,
  .cl-brand-emblem,
  .cl-brand-name {
    transition: none;
  }
}

/* ── Inquiry form ── */
.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.inquiry-intro .section-eyebrow,
.inquiry-intro .section-title {
  text-align: left;
}

.inquiry-intro p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
}

.inquiry-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.inquiry-steps li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--tan-200);
  color: var(--text);
  font-size: 0.95rem;
}

.inquiry-steps li:last-child {
  border-bottom: none;
}

.inquiry-steps strong {
  color: var(--brass-text);
  margin-right: 0.35rem;
}

.inquiry-email {
  font-size: 0.95rem;
}

.inquiry-email a {
  color: var(--brass-text);
  font-weight: 600;
  text-decoration: none;
}

.inquiry-email a:hover {
  text-decoration: underline;
}

.inquiry-form {
  background: #fff;
  border: 1px solid var(--tan-200);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.inquiry-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(192, 138, 62, 0.35), transparent 40%, rgba(192, 138, 62, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.label-optional {
  font-weight: 400;
  color: var(--text-muted);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--tan-200);
  border-radius: 6px;
  padding: 0.7rem 0.85rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px var(--brass-soft);
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.btn-full {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

.form-note a {
  color: var(--brass-text);
  font-weight: 600;
}

/* ── PLA stamps section ── */
.stamp-feature-art img {
  object-fit: cover;
  object-position: center 40%;
  background: var(--leather-900);
}

.stamp-fields {
  margin-top: 0.5rem;
}

@media (max-width: 860px) {
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
