:root {
  --ink: #293236;
  --muted: #5f6867;
  --line: #d7d2c7;
  --paper: #f7f5ec;
  --soft: #efebe2;
  --soft-2: #fbf9f3;
  --charcoal: #222b2f;
  --charcoal-2: #313d42;
  --accent: #8b6a46;
  --radius: 10px;
  --shadow-soft: 0 18px 45px rgba(28, 36, 40, 0.12);
  --shadow-card: 0 10px 28px rgba(28, 36, 40, 0.08);
  --shell: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  padding: 14px clamp(18px, 4vw, 46px);
  color: #f7f5ec;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 245, 236, 0.96);
  box-shadow: 0 10px 28px rgba(28, 36, 40, 0.1);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  width: 236px;
  min-width: 236px;
  min-height: 236px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  object-fit: contain;
  background: #f4f1e7;
  border: 1px solid rgba(34, 43, 47, 0.12);
  box-shadow: 0 8px 22px rgba(28, 36, 40, 0.12);
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-nav a,
.header-call {
  text-decoration: none;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(247, 245, 236, 0.44);
  background: rgba(247, 245, 236, 0.08);
  color: currentColor;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header.is-scrolled .header-call,
.site-header.is-open .header-call {
  border-color: rgba(34, 43, 47, 0.12);
  background: var(--charcoal);
  color: #f7f5ec;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 245, 236, 0.14);
  color: currentColor;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 66vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 112px 0 38px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 24, 27, 0.84) 0%, rgba(26, 34, 38, 0.68) 42%, rgba(30, 39, 44, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 24, 27, 0.7), transparent 44%);
}

.hero-inner {
  display: grid;
  align-items: end;
}

.hero-copy-block {
  width: min(620px, 100%);
  color: #f7f5ec;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.approach-copy h2,
.contact-copy h2,
.kb-gallery-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(1.95rem, 3.4vw, 3.2rem);
  line-height: 0.98;
}

.hero-project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px 14px;
  width: fit-content;
  max-width: 100%;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.hero-project-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(247, 245, 236, 0.2);
  border-radius: 999px;
  background: rgba(247, 245, 236, 0.08);
  box-shadow: 0 10px 26px rgba(18, 24, 27, 0.12);
  color: rgba(247, 245, 236, 0.96);
  font-size: clamp(0.95rem, 1.12vw, 1.02rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.hero-project-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(139, 106, 70, 0.18);
}

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

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.button.primary {
  background: #f7f5ec;
  color: var(--charcoal);
}

.button.secondary {
  border: 1px solid rgba(247, 245, 236, 0.3);
  background: rgba(247, 245, 236, 0.06);
  color: #f7f5ec;
}

.section {
  padding: clamp(38px, 5vw, 58px) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.section-intro h2,
.approach-copy h2,
.contact-copy h2 {
  font-size: clamp(1.58rem, 2.35vw, 2.22rem);
}

.section-intro p:not(.section-label),
.approach-copy p:not(.section-label),
.contact-copy p:not(.section-label),
.kb-gallery-intro {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.text-link {
  margin-top: 26px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.featured-work {
  background: var(--soft-2);
}

.identity-grid {
  display: grid;
  gap: 12px;
}

.identity-card {
  padding: 20px 20px 18px;
  border: 1px solid rgba(41, 50, 54, 0.12);
  border-radius: 14px;
  background: #fcfaf4;
  box-shadow: var(--shadow-card);
}

.identity-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.identity-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

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

.editorial-card {
  position: relative;
  min-height: 252px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

.editorial-card-large {
  grid-column: span 2;
  min-height: 312px;
}

.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.editorial-card:hover img,
.editorial-card:focus-within img {
  transform: scale(1.015);
}

.editorial-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 54px 18px 18px;
  color: #f7f5ec;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(0deg, rgba(18, 24, 27, 0.82), transparent);
}

.approach-section {
  background: var(--paper);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(18px, 2.8vw, 32px);
  align-items: start;
}

.approach-visual {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

.approach-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.approach-content {
  display: grid;
  gap: 18px;
  align-content: start;
}

.process-rail {
  display: grid;
  gap: 12px;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid rgba(41, 50, 54, 0.14);
}

.process-step:first-child {
  padding-top: 0;
  border-top: 0;
}

.process-step span {
  display: inline-flex;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-step h3,
.fit-line h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.process-step p,
.fit-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.fit-section {
  background: var(--soft);
}

.fit-layout {
  display: grid;
  gap: 18px;
}

.fit-copy-block {
  max-width: 760px;
}

.fit-copy-block h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.58rem, 2.35vw, 2.22rem);
  line-height: 1.02;
}

.fit-copy-block p:not(.section-label) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.fit-band {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  gap: clamp(16px, 2.2vw, 20px);
  align-items: start;
}

.fit-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

.fit-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.fit-list {
  display: grid;
  align-content: start;
  padding: 4px 0;
  background: transparent;
}

.fit-line {
  padding: 12px 0;
  border-top: 1px solid rgba(41, 50, 54, 0.14);
}

.fit-line:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-section {
  padding: clamp(42px, 5.5vw, 62px) 0;
  color: #f7f5ec;
  background: linear-gradient(180deg, #232c31 0%, #1b2226 100%);
}

.contact-wrap {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.contact-section .section-label {
  color: var(--accent);
}

.contact-copy {
  max-width: 680px;
}

.contact-copy p {
  color: rgba(247, 245, 236, 0.78);
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(247, 245, 236, 0.14);
  border-radius: 14px;
  background: rgba(247, 245, 236, 0.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.contact-panel a {
  display: grid;
  gap: 7px;
  min-height: 112px;
  align-content: center;
  padding: 20px 24px;
  text-decoration: none;
}

.contact-panel a + a {
  border-left: 1px solid rgba(247, 245, 236, 0.14);
}

.contact-panel span {
  color: rgba(247, 245, 236, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.28;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px 20px;
  color: rgba(247, 245, 236, 0.72);
  text-align: center;
  background: #1c2327;
}

.footer-brand {
  width: 78px;
  height: 78px;
  border-radius: 4px;
  background: #f4f1e7;
  border: 1px solid rgba(247, 245, 236, 0.16);
  object-fit: contain;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  line-height: 1.48;
}

.site-footer small {
  color: rgba(247, 245, 236, 0.52);
}

.gallery-page {
  padding-top: 88px;
  background: var(--paper);
}

.kb-gallery-page {
  min-height: calc(100vh - 88px);
  padding: 60px 24px 96px;
}

.kb-gallery-wrap {
  margin: 0 auto;
  max-width: 1180px;
}

.kb-gallery-title {
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  text-align: center;
}

.kb-gallery-intro {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
}

.kb-click-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.kb-gallery-thumb {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  display: block;
  overflow: hidden;
  padding: 0;
}

.kb-gallery-thumb img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  transition: transform 0.18s ease;
  width: 100%;
}

.kb-gallery-thumb:hover img,
.kb-gallery-thumb:focus-visible img {
  transform: scale(1.015);
}

.kb-lightbox[hidden] {
  display: none;
}

.kb-lightbox {
  align-items: center;
  background: rgba(18, 24, 27, 0.92);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 28px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2147483645;
}

.kb-lightbox-backdrop {
  appearance: none;
  background: transparent;
  border: 0;
  bottom: 0;
  cursor: zoom-out;
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.kb-lightbox-backdrop::before,
.kb-lightbox-backdrop::after {
  background: #f7f5ec;
  content: "";
  height: 2px;
  position: absolute;
  right: 24px;
  top: 30px;
  width: 28px;
}

.kb-lightbox-backdrop::before {
  transform: rotate(45deg);
}

.kb-lightbox-backdrop::after {
  transform: rotate(-45deg);
}

.kb-lightbox img {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  max-height: min(86vh, 980px);
  max-width: min(92vw, 1280px);
  object-fit: contain;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .section-grid,
  .approach-layout,
  .fit-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel a + a {
    border-left: 0;
    border-top: 1px solid rgba(247, 245, 236, 0.14);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 18px;
    right: 20px;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-call {
    display: grid;
    justify-self: stretch;
    width: 100%;
  }

  .site-header.is-open .site-nav {
    gap: 0;
    padding: 12px 0 6px;
  }

  .site-header.is-open .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .header-call {
    place-items: center;
    margin-top: 8px;
  }

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

@media (max-width: 640px) {
  .shell {
    width: min(var(--shell), calc(100% - 32px));
  }

  .site-header {
    min-height: 112px;
    padding: 12px 18px;
  }

  .brand {
    width: 128px;
    min-width: 128px;
    min-height: 128px;
  }

  .hero {
    min-height: 78vh;
    padding: 164px 0 40px;
  }

  .hero h1 {
    max-width: 22rem;
    font-size: 2.02rem;
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 22rem;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero .eyebrow {
    max-width: 18rem;
    margin-bottom: 12px;
    font-size: 0.62rem;
    line-height: 1.42;
    letter-spacing: 0.09em;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }

  .editorial-grid,
  .kb-click-gallery {
    grid-template-columns: 1fr;
  }

  .editorial-card,
  .editorial-card-large {
    min-height: 280px;
    grid-row: auto;
  }

  .approach-visual img,
  .fit-visual img {
    min-height: 300px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-section {
    padding: 56px 0;
  }

  .contact-panel a {
    min-height: auto;
    padding: 24px 22px;
  }

  .contact-panel strong {
    font-size: 1.02rem;
  }

  .kb-gallery-page {
    padding: 44px 20px 72px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}


/* 2026-07-28 specialty gallery refresh */
.gallery-page-head {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.gallery-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.gallery-back-link::before {
  content: "←";
}

.gallery-back-link:hover {
  color: var(--ink);
}

.gallery-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.gallery-category-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fcfaf4;
  box-shadow: var(--shadow-soft);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-category-card-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--charcoal);
}

.gallery-category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.22s ease;
}

.gallery-category-card:hover .gallery-category-card-media img {
  transform: scale(1.025);
}

.gallery-category-card:hover,
.gallery-category-card:focus-visible {
  box-shadow: 0 20px 48px rgba(28, 36, 40, 0.14);
  transform: translateY(-2px);
}

.gallery-category-card:focus-visible {
  outline: 2px solid rgba(139, 106, 70, 0.45);
  outline-offset: 4px;
}

.gallery-category-card-body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.gallery-category-card-body h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
}

.gallery-category-card-body p {
  margin: 0;
  color: var(--muted);
}

.gallery-category-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gallery-category-meta span:last-child {
  color: var(--accent);
}

.gallery-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
}

.gallery-category-nav a,
.gallery-category-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fcfaf4;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.gallery-category-nav a:hover,
.gallery-category-nav a[aria-current="page"],
.gallery-category-nav button:hover,
.gallery-category-nav button[aria-current="page"] {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #f7f5ec;
}

.gallery-count {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.gallery-detail-intro {
  max-width: 760px;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 24, 27, 0.72);
  z-index: 2147483640;
}

.gallery-modal-backdrop {
  appearance: none;
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: min(90vh, 980px);
  overflow: auto;
  padding: 72px clamp(18px, 3vw, 34px) 34px;
  border: 1px solid rgba(34, 43, 47, 0.1);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(18, 24, 27, 0.32);
}

.gallery-modal-close {
  appearance: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(34, 43, 47, 0.12);
  border-radius: 999px;
  background: rgba(247, 245, 236, 0.94);
  box-shadow: 0 8px 20px rgba(18, 24, 27, 0.12);
  cursor: pointer;
}

.gallery-modal-close::before,
.gallery-modal-close::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 14px;
  width: 18px;
  height: 2px;
  background: var(--charcoal);
}

.gallery-modal-close::before {
  transform: rotate(45deg);
}

.gallery-modal-close::after {
  transform: rotate(-45deg);
}

.gallery-modal-panel .kb-click-gallery {
  margin-top: 0;
}

@media (max-width: 980px) {
  .gallery-hub-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-project-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .gallery-category-card-body {
    padding: 20px;
  }

  .gallery-category-nav {
    gap: 10px;
  }

  .gallery-category-nav a,
  .gallery-category-nav button {
    width: 100%;
    justify-content: flex-start;
  }

  .gallery-modal {
    padding: 14px;
  }

  .gallery-modal-panel {
    max-height: min(92vh, 980px);
    padding: 64px 16px 22px;
  }

  .gallery-modal-close {
    top: 12px;
    right: 12px;
  }
}


/* 20260729-31 hero and founder refinement */

.hero-copy-block-minimal {
  display: grid;
  align-items: end;
  min-height: 100%;
}

.hero-tagline-artistic {
  margin: 0;
  max-width: 820px;
  color: rgba(243, 231, 210, 0.98);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.6vw, 2.55rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(18, 24, 27, 0.34);
}

.founder-layout.founder-layout-simple {
  display: flex;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
}

.founder-copy.founder-copy-simple {
  width: min(1060px, 100%);
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.founder-copy.founder-copy-simple p:not(.section-label) {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.founder-copy.founder-copy-simple p:last-child {
  margin-bottom: 0;
}

.founder-section .section-label {
  margin-bottom: 14px;
  text-align: center;
}

.founder-copy.founder-copy-simple h2 {
  max-width: 980px;
  margin: 0 auto 18px;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 1024px) {
  .brand {
    width: 176px;
    min-width: 176px;
    min-height: 176px;
  }
}

@media (max-width: 720px) {
  .brand {
    width: 124px;
    min-width: 124px;
    min-height: 124px;
  }

  .hero-tagline-artistic {
    font-size: clamp(1.36rem, 7vw, 1.82rem);
    line-height: 1.14;
  }
}

.hero-carousel {
  min-height: 78vh;
  padding: 124px 0 48px;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: -2;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy-block-wide {
  width: min(860px, 100%);
}

.hero-eyebrow-large {
  margin-bottom: 20px;
  color: rgba(247, 245, 236, 0.94);
  font-size: clamp(1rem, 1.38vw, 1.18rem);
  letter-spacing: 0.14em;
  line-height: 1.45;
}

.hero-support {
  max-width: 700px;
  margin: 16px 0 0;
  color: rgba(247, 245, 236, 0.9);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.founder-section {
  background: linear-gradient(180deg, var(--soft-2) 0%, var(--paper) 100%);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

.founder-visual {
  margin: 0;
}

.founder-visual img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.founder-copy h2,
.section-head h2,
.mission-copy h2,
.process-title,
.process-detail-card h2,
.process-principles-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

.founder-copy h2,
.section-head h2,
.mission-copy h2,
.process-principles-copy h2 {
  font-size: clamp(2rem, 3.1vw, 3.05rem);
}

.founder-copy p,
.section-head p,
.mission-copy p,
.process-intro,
.process-detail-card p,
.process-principles-copy p,
.process-principles-list p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.founder-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.founder-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(34, 43, 47, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.founder-point span,
.process-detail-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(139, 106, 70, 0.14);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.founder-point h3,
.project-type-content h3,
.process-principles-list h3 {
  margin: 0 0 6px;
  font-size: 1.06rem;
  line-height: 1.3;
}

.founder-point p {
  margin: 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head-centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.project-types-section {
  background: #f2eee5;
}

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

.project-type-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 24px;
  background: #d8d3c8;
  box-shadow: var(--shadow-card);
}

.project-type-card img,
.project-type-overlay {
  position: absolute;
  inset: 0;
}

.project-type-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-type-overlay {
  background: linear-gradient(180deg, rgba(18, 24, 27, 0.12) 0%, rgba(18, 24, 27, 0.84) 100%);
}

.project-type-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  height: 100%;
  padding: 24px;
  color: #f7f5ec;
}

.project-type-content h3 {
  font-size: 1.34rem;
}

.project-type-content p {
  margin: 0;
  color: rgba(247, 245, 236, 0.9);
  line-height: 1.55;
}

.mission-section {
  background: var(--paper);
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(320px, 0.46fr);
  gap: 24px;
  align-items: center;
}

.mission-link-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #283237 0%, #1e262a 100%);
  color: #f7f5ec;
  text-decoration: none;
  box-shadow: 0 20px 46px rgba(28, 36, 40, 0.18);
}

.mission-link-card span {
  color: rgba(247, 245, 236, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-link-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 500;
  line-height: 1.12;
}

.mission-link-card p {
  margin: 0;
  color: rgba(247, 245, 236, 0.82);
  line-height: 1.65;
}

.process-page {
  background: var(--paper);
}

.process-hero {
  position: relative;
  min-height: 54vh;
  overflow: hidden;
  color: #f7f5ec;
}

.process-hero-media,
.process-hero-overlay {
  position: absolute;
  inset: 0;
}

.process-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-hero-overlay {
  background: linear-gradient(90deg, rgba(18, 24, 27, 0.86) 0%, rgba(18, 24, 27, 0.6) 46%, rgba(18, 24, 27, 0.28) 100%);
}

.process-hero-inner {
  position: relative;
  padding: 160px 0 74px;
  max-width: 760px;
}

.process-title {
  max-width: 760px;
  font-size: clamp(2.15rem, 4vw, 3.85rem);
  color: #f7f5ec;
  text-shadow: 0 10px 24px rgba(18, 24, 27, 0.24);
}

.process-intro {
  max-width: 680px;
  color: rgba(247, 245, 236, 0.86);
}

.process-steps-section {
  background: linear-gradient(180deg, var(--soft-2) 0%, var(--paper) 100%);
}

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

.process-detail-card,
.process-principles-list article {
  padding: 24px;
  border: 1px solid rgba(34, 43, 47, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-card);
}

.process-detail-card h2 {
  margin-top: 16px;
  font-size: 1.68rem;
}

.process-principles-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 24px;
  align-items: start;
}

.process-principles-list {
  display: grid;
  gap: 16px;
}

@media (max-width: 1024px) {
  .hero-project-list-large {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .founder-layout,
  .mission-layout,
  .process-principles-layout {
    grid-template-columns: 1fr;
  }

  .project-type-grid,
  .process-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-visual img {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .hero-carousel {
    min-height: 72vh;
    padding: 122px 0 42px;
  }

  .hero-eyebrow-large {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .brand {
    width: 124px;
    min-width: 124px;
    min-height: 124px;
  }

  .hero-tagline-artistic {
    font-size: clamp(1.36rem, 7vw, 1.82rem);
    line-height: 1.14;
  }

  .hero-support {
    font-size: 1rem;
    line-height: 1.62;
  }

  .project-type-grid,
  .process-steps-grid {
    grid-template-columns: 1fr;
  }

  .project-type-card {
    min-height: 280px;
  }

  .founder-visual img {
    min-height: 320px;
  }

  .mission-link-card,
  .process-detail-card,
  .process-principles-list article {
    padding: 22px;
  }

  .process-hero-inner {
    padding: 136px 0 60px;
  }
}
