/* C&K Street — shared styles
   Black ground with sepia "photograph" panels (duotone illustration + grain + vignette).
   Type: Fraunces (display) + Public Sans (body) + IBM Plex Mono (labels/data) */

:root {
  --ground: #0b0906;
  --panel: #120d08;
  --panel-line: #241a10;

  --ink: #f1e6d2;
  --ink-soft: #c2ac84;
  --ink-faint: #7d6c50;

  --accent: #e0873f;
  --accent-deep: #b85a24;

  --line: #2c2013;

  /* sepia "photograph" tones, used only inside .photo panels */
  --photo-ground: #140d07;
  --photo-deep: #05030200;
  --photo-mid: #8a5a2e;
  --photo-hi: #d8a563;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: var(--accent);
}

.wrap {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* Header */

.site-header {
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.wordmark {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.wordmark span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  padding-block: 4px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

/* Eyebrow label */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}

/* Photograph panel — the sepia-on-black treatment.
   .photo-scene is the duotone photo (or illustrated art); .grain and .vignette sit on top. */

.photo {
  position: relative;
  overflow: hidden;
  background: var(--photo-ground);
  border-bottom: 1px solid var(--panel-line);
}

.photo-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero-accent {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.photo .vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(6,4,2,0.86) 0%, rgba(6,4,2,0.62) 28%, rgba(6,4,2,0.22) 52%, rgba(6,4,2,0) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 24%, rgba(0,0,0,0) 58%, rgba(0,0,0,0.7) 100%),
    radial-gradient(ellipse 120% 90% at 50% 50%, transparent 55%, rgba(0,0,0,0.4) 100%);
}

.photo .grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.photo .wrap {
  position: relative;
  z-index: 2;
  padding-block: 64px 0;
}

/* Hero (uses .photo) */

.hero h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 620;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  text-wrap: balance;
  max-width: 14ch;
  color: var(--ink);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero .subhead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 48px;
}

.hero-art {
  width: 100%;
  height: auto;
  display: block;
}

/* Sections */

section {
  padding-block: 72px;
}

.section-head {
  max-width: 62ch;
  margin-bottom: 40px;
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-wrap: balance;
  color: var(--ink);
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

.prose p {
  max-width: 62ch;
  margin: 0 0 22px;
  color: var(--ink-soft);
}

.prose p:last-child {
  margin-bottom: 0;
}

/* Value grid */

.values {
  background: var(--panel);
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

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

.value-card {
  border-top: 2px solid var(--accent);
  padding-top: 18px;
}

.value-card .index {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 10px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--ink);
}

.value-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.98rem;
}

/* Process (about page) */

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .process {
    grid-template-columns: 1fr;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step .icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}

.process-step p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.98rem;
}

/* Closing / footer link section */

.closing {
  text-align: left;
}

.closing-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}

.closing-link:hover {
  color: var(--accent);
}

.closing-link svg {
  width: 16px;
  height: 16px;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 28px;
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
}

@media (max-width: 480px) {
  .wrap {
    padding-inline: 18px;
  }
  section {
    padding-block: 52px;
  }
}
