/* Concrete Shop West — shared brand tokens */
:root {
  --paper: #F5F2EE;
  --paper-2: #EAE6E0;
  --ink: #1A1A1A;
  --ink-2: #2A2A28;
  --concrete: #8A867E;
  --concrete-2: #B8B4AC;
  --rule: #D9D4CC;
  --ember: oklch(0.62 0.14 45);
  --ember-deep: oklch(0.52 0.16 40);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Wordmark */
.wm {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.wm::before {
  content: "";
  display: inline-block;
  width: 22px; height: 22px;
  background: var(--ink);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='3' width='18' height='18' fill='none' stroke='black' stroke-width='2'/><path d='M8 16 Q12 6 16 16 Q14 12 12 14 Q10 12 8 16 Z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='3' width='18' height='18' fill='none' stroke='black' stroke-width='2'/><path d='M8 16 Q12 6 16 16 Q14 12 12 14 Q10 12 8 16 Z' fill='black'/></svg>") center/contain no-repeat;
}
.wm-stack { display: inline-flex; flex-direction: column; line-height: 1.15; gap: 2px; }
.wm-stack b { font-weight: 700; letter-spacing: 0.18em; font-size: 12px; white-space: nowrap; }
.wm-stack i { font-style: normal; font-size: 9.5px; letter-spacing: 0.28em; color: var(--concrete); white-space: nowrap; }

/* Reusable */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--concrete);
}
.serif {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.005em;
}
.rule { border: 0; height: 1px; background: var(--rule); margin: 0; }

button, .btn {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.btn-primary:hover { background: var(--ember-deep); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 13px 22px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* Photo container — supports both placeholder gradient and real <img> child */
.photo {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.04) 0 14px,
      rgba(0,0,0,0.04) 14px 28px),
    linear-gradient(160deg, #2a2926 0%, #4a4844 45%, #6f6c66 100%);
  color: rgba(255,255,255,0.7);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.photo::after {
  content: attr(data-label);
  position: absolute;
  left: 16px; bottom: 14px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(2px);
}
.photo:not([data-label])::after { content: none; display: none; }
.photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.photo.light {
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.5) 0 14px,
      rgba(0,0,0,0.04) 14px 28px),
    linear-gradient(160deg, #d6d1c8 0%, #b8b3aa 50%, #94908a 100%);
  color: rgba(0,0,0,0.55);
}
.photo.warm {
  background:
    repeating-linear-gradient(135deg,
      rgba(255,180,90,0.06) 0 14px,
      rgba(0,0,0,0.05) 14px 28px),
    radial-gradient(60% 80% at 50% 70%, oklch(0.55 0.16 45) 0%, #2a221c 60%, #161311 100%);
  color: rgba(255,220,180,0.85);
}

/* Footer shared bones */
.csw-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 32px;
}
.csw-footer a { color: var(--paper); text-decoration: none; }
.csw-footer a:hover { color: var(--concrete-2); }

/* Container */
.wrap { width: min(1200px, 92%); margin: 0 auto; }
.wrap-narrow { width: min(960px, 92%); margin: 0 auto; }

/* Mobile baseline */
@media (max-width: 720px) {
  .hide-mobile { display: none !important; }
}
