/* ===================================================================
   ATLAS FIBROUS PLASTER: shared stylesheet
   Used across every page of the site (index.html, about-atlas.html, etc.)
   =================================================================== */

:root {
  /* Color tokens */
  --parchment: #FFFFFF;
  --parchment-deep: #F4F2EE;
  --ink: #171614;
  --ink-soft: #5B564D;
  --plaster-white: #FBF9F4;
  --line: rgba(23, 22, 20, 0.12);

  /* Type tokens */
  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Fraunces', 'Georgia', serif;
  --font-label: 'Space Grotesk', 'Futura', sans-serif;
  --font-body: 'Work Sans', 'Helvetica Neue', Arial, sans-serif;

  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}
em, .accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 600;
}
.hero .eyebrow { color: var(--plaster-white); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Art Deco divider (signature element) ---------- */
.deco-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
}
.deco-divider svg { width: 52px; height: 14px; }
.deco-divider .rule {
  height: 1px;
  width: 64px;
  background: var(--line);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand img {
  height: 34px;
  width: auto;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 20px;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1;
}
.brand-text {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
  padding-left: 14px;
  margin-left: 4px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
nav.main-nav a {
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--ink);
  font-weight: 600;
}
nav.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
}

/* Contact nav dropdown (email/phone, not a page link) */
.nav-contact {
  position: relative;
}
.nav-contact-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: none;
  border: none;
  padding: 6px 0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.nav-contact-trigger svg {
  width: 9px;
  height: 6px;
  transition: transform 0.2s ease;
}
.nav-contact-trigger:hover { color: var(--ink); }
.nav-contact.open .nav-contact-trigger { color: var(--ink); }
.nav-contact.open .nav-contact-trigger svg { transform: rotate(180deg); }

.nav-contact-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 220px;
  background: var(--plaster-white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(23,22,20,0.14);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 50;
}
.nav-contact.open .nav-contact-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-contact-panel a {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: normal;
  text-transform: none;
}
.nav-contact-panel a:hover { text-decoration: underline; }
.nav-contact-panel .label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  nav.main-nav {
    position: fixed;
    inset: 92px 0 0 0;
    background: var(--parchment);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav a { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav-contact-trigger { font-size: 16px; }
  .nav-contact-panel {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }
  .nav-contact.open .nav-contact-panel {
    max-height: 160px;
    padding: 14px 0 0 4px;
    border-top: none;
  }
}

/* ---------- Hero ---------- */
.hero-heading {
  padding: 64px 0 48px;
  background: var(--parchment);
}
.hero-mark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(72px, 14vw, 200px);
  line-height: 0.86;
  color: var(--ink);
  margin: 16px 0 22px;
  text-transform: uppercase;
}
.hero-tagline {
  max-width: 380px;
  margin-left: auto;
  text-align: right;
  font-size: 15.5px;
  color: var(--ink-soft);
}

.hero {
  position: relative;
  height: 78vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--plaster-white);
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,12,8,0.78) 0%, rgba(15,12,8,0.28) 46%, rgba(15,12,8,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 56px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.hero .eyebrow { color: var(--plaster-white); }
.hero p.lede {
  max-width: 440px;
  font-size: 16.5px;
  color: rgba(251, 249, 244, 0.86);
  margin: 10px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 26px;
  margin-top: 8px;
  border: 1px solid var(--plaster-white);
  color: var(--plaster-white);
  transition: all 0.25s ease;
}
.btn:hover {
  background: var(--plaster-white);
  color: var(--ink);
}
.btn.dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn.dark:hover {
  background: var(--ink);
  color: var(--plaster-white);
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-top: 12px;
}

/* Two-column intro */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  border-radius: 18px;
}
.split .copy p { color: var(--ink-soft); font-size: 16.5px; }
.split .copy .eyebrow { margin-bottom: 10px; display: block; }
.split .copy h2 { margin-bottom: 20px; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}

/* Services grid */
.services {
  background: var(--parchment);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.service-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.service-card {
  background: var(--parchment-deep);
  border-radius: 18px;
  padding: 40px 32px;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, background 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card.photo {
  color: var(--plaster-white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.service-card.photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(15,12,8,0.15) 0%, rgba(15,12,8,0.72) 100%);
}
.service-card.photo * { position: relative; z-index: 1; }
.service-card:not(.photo):hover { background: #EDEAE3; }
.service-num {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--ink);
}
.service-card.photo .service-num { color: var(--plaster-white); }
.service-card h3 {
  font-size: 26px;
  margin: 22px 0 10px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.service-card.photo p { color: rgba(251,249,244,0.85); }
.service-link {
  font-family: var(--font-label);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.service-card.photo .service-link { color: var(--plaster-white); }
.service-link svg { width: 14px; height: 10px; transition: transform 0.2s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

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

/* Heritage / pull quote strip */
.heritage {
  position: relative;
  color: var(--ink);
  text-align: center;
  overflow: hidden;
  padding: 140px 0;
}
.heritage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heritage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.93) 100%);
}
.heritage .wrap { position: relative; z-index: 1; max-width: 780px; }
.heritage .year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  color: var(--ink);
  line-height: 1;
}
.heritage blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-style: italic;
  font-weight: 500;
  margin: 26px 0 30px;
  color: var(--ink);
}
.heritage cite {
  font-family: var(--font-label);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Notice banner */
.notice {
  background: var(--parchment);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.notice .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 40px;
}
.notice p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.notice strong { color: var(--ink); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--parchment);
  color: var(--ink-soft);
  padding: 72px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 34px; margin-bottom: 18px; }
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  text-transform: uppercase;
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
}
.footer-brand-row { display: flex; align-items: center; margin-bottom: 18px; }
.footer-brand-row img { height: 34px; margin-bottom: 0; }
.footer-brand p { font-size: 14.5px; max-width: 320px; color: var(--ink-soft); }
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12.5px;
  color: var(--ink-soft);
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .socials { display: flex; gap: 18px; }
.footer-bottom a:hover { color: var(--ink); }

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Inner page hero ---------- */
.page-hero {
  padding: 180px 0 70px;
  background: var(--parchment-deep);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(32px, 5vw, 54px); margin-top: 14px; }
.page-hero .lede {
  max-width: 620px;
  font-size: 17.5px;
  color: var(--ink-soft);
  margin-top: 20px;
}

/* Photo-backed variant of the page hero */
.page-hero.photo {
  position: relative;
  color: var(--plaster-white);
  overflow: hidden;
  background: none;
  border-bottom: none;
  padding: 210px 0 96px;
}
.page-hero.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.page-hero.photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,12,8,0.5) 0%, rgba(15,12,8,0.8) 100%);
}
.page-hero.photo .wrap { position: relative; z-index: 1; }
.page-hero.photo .eyebrow { color: var(--plaster-white); }
.page-hero.photo h1 { color: var(--plaster-white); }
.page-hero.photo .lede { color: rgba(251,249,244,0.88); }

/* ---------- Bio split (About page) ---------- */
.bio-split { grid-template-columns: 0.7fr 1.3fr; }
.bio-split.reverse { direction: rtl; }
.bio-split.reverse > * { direction: ltr; }
.bio-split img { aspect-ratio: 3/4; object-position: top center; }
.figure-cap {
  margin-top: 14px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.figure-cap strong { color: var(--ink); display: block; font-size: 13px; letter-spacing: 0.1em; margin-bottom: 2px; }
.bio-split .copy p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 16px; }

@media (max-width: 820px) {
  .bio-split { grid-template-columns: 1fr; }
  .bio-split img { aspect-ratio: 4/3; }
}

/* ---------- Photo quote strip (reusable dark photo section) ---------- */
.photo-quote {
  position: relative;
  color: var(--plaster-white);
  text-align: center;
  overflow: hidden;
  padding: 130px 0;
}
.photo-quote img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,12,8,0.72) 0%, rgba(15,12,8,0.6) 100%);
}
.photo-quote .wrap { position: relative; z-index: 1; max-width: 760px; }
.photo-quote .date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 46px);
  color: var(--plaster-white);
  margin-bottom: 18px;
}
.photo-quote p {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 25px);
  font-style: italic;
  font-weight: 500;
  color: var(--plaster-white);
}

/* ---------- Feature block (image + text, larger image) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.feature img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature .copy p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 16px; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: 32px; }
}

/* Collage hero image (overlapping circular bleed, for catalog pages with round products) */
.hero-collage {
  position: relative;
  height: 100%;
  min-height: 460px;
}
.hero-collage .disc {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(23,22,20,0.16);
  border: 1px solid var(--line);
}
.hero-collage .disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-collage .disc.d1 {
  width: 78%;
  aspect-ratio: 1/1;
  top: -6%;
  right: -8%;
}
.hero-collage .disc.d2 {
  width: 52%;
  aspect-ratio: 1/1;
  bottom: 4%;
  left: -4%;
  z-index: 2;
}
.hero-collage .disc.d3 {
  width: 36%;
  aspect-ratio: 1/1;
  bottom: -8%;
  right: 18%;
  z-index: 3;
}
@media (max-width: 900px) {
  .hero-collage { min-height: 320px; }
}

/* ---------- Split hero (text left, image right) ---------- */
.split-hero {
  background: var(--parchment);
  padding-top: 56px;
}
.split-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
  padding-bottom: 64px;
}
.split-hero .hero-text .eyebrow { display: block; margin-bottom: 18px; }
.split-hero .hero-text h1 {
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.01em;
}
.split-hero .hero-text .lede {
  max-width: 440px;
  font-size: 17.5px;
  color: var(--ink-soft);
  margin-top: 24px;
}
.split-hero .hero-text .lead-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  height: 86px;
}
.split-hero .hero-text .lead-line .stem {
  width: 1px;
  flex: 1;
  background: var(--line);
}
.split-hero .hero-text .lead-line svg {
  width: 14px;
  height: 9px;
  margin-top: 6px;
  color: var(--ink-soft);
}
.split-hero .hero-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/4;
  border: 1px solid var(--line);
}
.split-hero .hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-hero .hero-image.collage {
  aspect-ratio: auto;
  border: none;
  overflow: visible;
}

@media (max-width: 900px) {
  .split-hero-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .split-hero .hero-image { order: -1; aspect-ratio: 4/3; }
  .split-hero .hero-image.collage { aspect-ratio: auto; height: 320px; }
  .split-hero { padding-top: 32px; }
  .split-hero .hero-text .lead-line { height: 56px; margin-top: 28px; }
}
.subnav-wrap {
  position: sticky;
  top: 89px;
  z-index: 90;
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
}
.subnav {
  display: flex;
  gap: 8px;
  padding: 18px 0;
  overflow-x: auto;
}
.subnav a {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  white-space: nowrap;
  transition: all 0.2s ease;
}
.subnav a:hover { border-color: var(--ink); color: var(--ink); }

/* ---------- Product grid ---------- */
.category-block { padding: 88px 0; }
.category-block + .category-block { border-top: 1px solid var(--line); }
.category-intro { max-width: 680px; margin-bottom: 44px; }
.category-intro p { color: var(--ink-soft); font-size: 16.5px; margin-top: 14px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.product-card { display: flex; flex-direction: column; }
.product-card .thumb {
  background: #0d0c0a;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card .thumb.diagram {
  background: #303741;
  aspect-ratio: 16/9;
}
.product-card .p-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.product-card .p-dims {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Placeholder card (no photo yet) */
.product-card.placeholder .thumb {
  background: var(--parchment-deep);
  border: 1.5px dashed var(--line);
}
.product-card.placeholder .thumb svg { width: 40px; height: 40px; opacity: 0.35; }
.product-card.placeholder .ph-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 10px;
}
.product-card.placeholder .p-name,
.product-card.placeholder .p-dims { color: var(--ink-soft); opacity: 0.55; }

.category-note {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
  max-width: 680px;
}

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .subnav-wrap { top: 0; }
}
.craft-gallery { background: var(--ink); color: var(--plaster-white); }
.craft-gallery .section-head h2,
.craft-gallery .section-head .eyebrow { color: var(--plaster-white); }
.craft-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.craft-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #000;
}
.craft-item .cap {
  margin-top: 16px;
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251,249,244,0.75);
}
@media (max-width: 820px) {
  .craft-gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 24px; }
  section { padding: 64px 0; }
  .hero-content { padding: 0 24px 56px; }
}
