/* ====================================================================
   v2 overrides — concept dossier framing, compact hero, real placeholders.
   Builds on styles.css; only differences live here.
   ==================================================================== */

/* ---------- Concept notice strip (very top) ---------- */
.concept-strip {
  position: relative;
  z-index: 51;
  background: color-mix(in oklch, var(--accent) 12%, var(--bg) 88%);
  border-bottom: 1px solid color-mix(in oklch, var(--accent) 28%, var(--hairline) 72%);
}

.concept-strip .container {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.concept-strip-text {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.55;
}

.concept-strip-text strong {
  color: var(--accent);
  font-weight: 400;
}

.concept-strip-text em {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  margin: 0 2px;
}

.concept-strip-text .sep {
  margin: 0 10px;
  opacity: 0.4;
}

.dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent) 60%, transparent);
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent) 60%, transparent); }
  50%      { box-shadow: 0 0 0 8px transparent; }
}

/* concept-strip sits OVER the topbar's sticky behavior */
.topbar { top: 0; }

/* ---------- Hero compact ---------- */
.hero-compact {
  padding: 56px 0 100px;
}

.hero-stage-tight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 1000px) {
  .hero-stage-tight {
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
  }
}

.hero-title-tight {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--ink);
}

.hero-title-tight .italic {
  font-style: italic;
  color: var(--accent);
}

.hero-sub-tight {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-dim);
  font-weight: 300;
  max-width: 520px;
  margin: 0 0 36px;
}

/* Fact grid — 2x2, hairline-separated, replaces the heavy badge strip */
.hero-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hairline-soft);
  border-left: 1px solid var(--hairline-soft);
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-right: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}

.hf-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hf-val {
  font-family: var(--f-display);
  font-size: 19px;
  color: var(--ink);
  line-height: 1.25;
}

/* ---------- Hero object framed ---------- */
.hero-object-framed {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.hero-object-framed .object-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  min-width: 0;
  display: grid;
  place-items: center;
  /* The "frame" — subtle dark inset with hairline border. This is what makes
     the cutout stop feeling like a webshop cutout: it's PRESENTED in a panel. */
  background:
    radial-gradient(70% 55% at 50% 45%,
      color-mix(in oklch, var(--accent) 8%, var(--bg-2) 92%) 0%,
      var(--bg) 75%);
  border: 1px solid var(--hairline-soft);
  overflow: hidden;
  padding: 8%;
}

.hero-object-framed .object-frame::before {
  /* inner hairline */
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid color-mix(in oklch, var(--accent) 18%, transparent);
  pointer-events: none;
  z-index: 3;
}

.hero-object-framed .glow {
  position: absolute;
  inset: 5%;
  background:
    radial-gradient(55% 45% at 50% 50%,
      color-mix(in oklch, var(--accent) 22%, transparent) 0%,
      transparent 65%),
    radial-gradient(45% 40% at 35% 65%,
      color-mix(in oklch, var(--accent-cool) 16%, transparent) 0%,
      transparent 70%),
    radial-gradient(50% 40% at 65% 35%,
      color-mix(in oklch, var(--accent-2) 18%, transparent) 0%,
      transparent 65%);
  filter: blur(18px);
  z-index: 0;
  opacity: 0.9;
  animation: drift 22s ease-in-out infinite alternate;
}

.hero-object-framed .ground-shadow {
  /* elliptical contact shadow under the object — grounds it */
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 10%;
  height: 8%;
  background: radial-gradient(50% 100% at 50% 50%,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 45%,
    transparent 75%);
  filter: blur(6px);
  z-index: 1;
}

.hero-object-framed .specimen {
  position: relative;
  z-index: 2;
  width: 84%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 30px 50px rgba(0,0,0,0.55))
    drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

.hero-object-framed .frame-marks {
  position: absolute;
  inset: 20px;
  pointer-events: none;
  z-index: 4;
}

.object-caption {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 4px;
}

/* ---------- Section padding (tighter for v2) ---------- */
.section-tight2 {
  padding: 110px 0;
}

@media (max-width: 720px) {
  .section-tight2 { padding: 80px 0; }
}

/* ---------- Cautious note (factual softening) ---------- */
.cautious {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.cautious-note {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 2px solid var(--accent);
  background: color-mix(in oklch, var(--accent) 4%, transparent);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 460px;
}

/* ---------- Rarity grid: 5 items, balanced rows ---------- */
.rarity-grid-5 {
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .rarity-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .rarity-grid-5 .rarity-block:nth-child(2n) { border-right: 0; }
  .rarity-grid-5 .rarity-block:nth-child(2n-1) { border-right: 1px solid var(--hairline-soft); }
}

@media (min-width: 1100px) {
  .rarity-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .rarity-grid-5 .rarity-block { border-right: 1px solid var(--hairline-soft); }
  .rarity-grid-5 .rarity-block:nth-child(3n) { border-right: 0; }
  .rarity-grid-5 .rarity-block:nth-child(2n) { border-right: 1px solid var(--hairline-soft); }
  .rarity-grid-5 .rarity-block:nth-child(3n) { border-right: 0; }
}

/* ---------- Interior visual (real image) ---------- */
.interior-visual {
  position: relative;
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.interior-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--hairline-soft);
}

.interior-visual-cap {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 2px;
}

/* ---------- Interior placeholder card (replaces fake plinth) ---------- */
.interior-placeholder {
  position: relative;
  aspect-ratio: 4/5;
  min-width: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 22px,
      color-mix(in oklch, var(--hairline) 35%, transparent) 22px,
      color-mix(in oklch, var(--hairline) 35%, transparent) 23px
    ),
    var(--bg-2);
  border: 1px dashed color-mix(in oklch, var(--accent) 30%, var(--hairline) 70%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  text-align: center;
}

.interior-placeholder .ip-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid color-mix(in oklch, var(--accent) 50%, var(--hairline));
  padding: 5px 10px;
  background: color-mix(in oklch, var(--bg) 80%, transparent);
}

.interior-placeholder .ip-cross {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid color-mix(in oklch, var(--hairline) 50%, transparent);
}

.interior-placeholder .ip-cross::before,
.interior-placeholder .ip-cross::after {
  content: "";
  position: absolute;
  background: color-mix(in oklch, var(--hairline) 40%, transparent);
}
.interior-placeholder .ip-cross::before {
  top: 0; bottom: 0; left: 50%; width: 1px;
}
.interior-placeholder .ip-cross::after {
  left: 0; right: 0; top: 50%; height: 1px;
}

.interior-placeholder .ip-copy {
  position: relative;
  z-index: 2;
  max-width: 320px;
}

.interior-placeholder .ip-icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent);
  opacity: 0.85;
}

.interior-placeholder .ip-title {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 12px;
  font-style: italic;
}

.interior-placeholder .ip-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0 0 24px;
}

.interior-placeholder .ip-hint {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Override the soft warm background on .interior since the placeholder is the focus */
.interior {
  background: var(--bg);
}

/* ---------- Brand: tighten the topbar label ---------- */
.topbar .brand span:not(.brand-mark) {
  font-size: 15px;
  letter-spacing: 0.01em;
}

/* ---------- Concept note (strong) ---------- */
.concept-note-strong {
  margin-top: 32px;
  padding: 18px 22px;
  border: 1px solid color-mix(in oklch, var(--accent) 30%, var(--hairline));
  background: color-mix(in oklch, var(--accent) 4%, transparent);
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  line-height: 1.7;
  text-transform: none;
  color: var(--ink-dim);
  text-align: left;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Personal inquiry form ---------- */
.inquiry-shell {
  max-width: 980px;
  margin: 54px auto 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--hairline-soft);
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--accent) 7%, transparent), transparent 42%),
    var(--bg-2);
  text-align: left;
}

.inquiry-heading {
  max-width: 650px;
  margin-bottom: 28px;
}

.inquiry-heading h3 {
  margin: 10px 0 10px;
  font-family: var(--f-display);
  font-size: clamp(29px, 4vw, 42px);
  font-weight: 500;
  color: var(--ink);
}

.inquiry-heading p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.75;
}

.inquiry-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

.inquiry-options legend,
.inquiry-field > span {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.inquiry-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 78px;
  padding: 15px;
  border: 1px solid var(--hairline-soft);
  background: color-mix(in oklch, var(--bg) 72%, transparent);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.inquiry-option:hover,
.inquiry-option:has(input:checked) {
  border-color: color-mix(in oklch, var(--accent) 70%, var(--hairline));
  background: color-mix(in oklch, var(--accent) 8%, var(--bg));
}

.inquiry-option input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.inquiry-option strong,
.inquiry-option small {
  display: block;
}

.inquiry-option strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.inquiry-option small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

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

.inquiry-field {
  display: block;
}

.inquiry-field input,
.inquiry-field textarea {
  width: 100%;
  border: 1px solid var(--hairline-soft);
  border-radius: 0;
  outline: 0;
  padding: 13px 14px;
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.inquiry-field textarea {
  resize: vertical;
}

.inquiry-field input:focus,
.inquiry-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in oklch, var(--accent) 18%, transparent);
}

.inquiry-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.inquiry-consent input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.inquiry-submit {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.inquiry-submit .btn {
  cursor: pointer;
}

.inquiry-submit p {
  margin: 0;
  color: var(--muted);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.inquiry-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inquiry-status {
  display: none;
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid var(--hairline-soft);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.inquiry-status.is-visible {
  display: block;
}

.inquiry-status.is-success {
  border-color: color-mix(in oklch, #77b888 70%, var(--hairline));
  background: color-mix(in oklch, #77b888 9%, transparent);
}

.inquiry-status.is-error {
  border-color: color-mix(in oklch, #d47d68 70%, var(--hairline));
  background: color-mix(in oklch, #d47d68 9%, transparent);
}

/* ---------- Make stage on hero align-items: start so columns size independently ---------- */
@media (min-width: 1000px) {
  .hero-stage-tight {
    align-items: start;
  }
}

/* ---------- Mobile fact grid stack ---------- */
@media (max-width: 600px) {
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts li { border-right: 1px solid var(--hairline-soft); }
  .inquiry-options,
  .inquiry-grid { grid-template-columns: 1fr; }
}
