/* ===== Concept 01 · Scarcity — page-specific styles shared across all 5 city pages ===== */
body { background: var(--paper); color: var(--body); }

/* Hide the prototype's own top bar — the main site's nav already sits on top. */
.concept-nav { display: none !important; }

/* ===================== HERO (DARK) ===================== */
.hero-wrap { background: var(--ink-deep); color: #d9d0b9; }
.hero-wrap h1, .hero-wrap h2, .hero-wrap h3 { color: #f3ead2; }

.hero {
  min-height: 100vh;
  padding: 120px 6vw 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,20,25,0.72) 0%, rgba(10,20,25,0.45) 45%, rgba(10,20,25,0.25) 100%),
    linear-gradient(180deg, rgba(10,20,25,0.25) 0%, rgba(10,20,25,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  pointer-events: none; z-index: 2;
}
@media (max-width: 720px) {
  .hero__video { display: none; }
  .hero__vignette {
    background:
      radial-gradient(ellipse at 20% 10%, rgba(201,176,117,0.14), transparent 50%),
      radial-gradient(ellipse at 85% 85%, rgba(135,109,39,0.10), transparent 55%),
      linear-gradient(180deg, var(--ink-deep), #0f1a1f 100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
.hero__inner {
  position: relative; z-index: 3;
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 80px; align-items: center;
}
.hero__content { min-width: 0; }
.hero__tower {
  position: relative; align-self: stretch; min-height: 560px;
  border: 1px solid rgba(201,176,117,0.22);
  background: linear-gradient(180deg, rgba(201,176,117,0.04), rgba(15,26,31,0));
  padding: 14px;
}
.hero__tower-frame {
  position: relative; width: 100%; height: 100%;
  overflow: hidden; background: #0b161b;
}
.hero__tower-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,26,31,0.85) 100%);
  pointer-events: none;
}
.hero__tower img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: left 40%;
  filter: saturate(0.92) contrast(1.05);
}
.hero__tower-cap {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  font-family: var(--font-sans); font-size: 10.5px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #efe6cf; opacity: 0.85;
}
.hero__tower-cap em { font-style: normal; color: var(--gold-soft); }
.hero__tower-tick {
  position: absolute; top: 18px; right: 20px; z-index: 2;
  font-family: var(--font-sans); font-size: 9.5px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-soft); opacity: 0.7;
}
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__tower { min-height: 420px; max-width: 420px; margin: 0 auto; }
}
.hero__eyebrow {
  font-family: var(--font-sans); font-size: 11.5px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 40px;
}
.hero__eyebrow em { font-style: normal; color: #efe6cf; opacity: 0.6; }

.scarcity { margin-bottom: 50px; }
.scarcity__main {
  font-family: var(--font-display);
  font-size: clamp(180px, 24vw, 320px);
  line-height: 0.85; font-weight: 500;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 32px rgba(201,176,117,0.2));
  letter-spacing: -0.04em;
}
.scarcity__label {
  font-family: var(--font-sans); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-soft); margin-top: 10px; display: block;
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 500; line-height: 1.1;
  color: #f3ead2; margin-bottom: 28px;
  max-width: 960px;
}
.hero__h1 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.hero__sub {
  font-family: var(--font-body); font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px);
  color: #c8bea8; max-width: 720px;
  line-height: 1.75; margin-bottom: 48px;
}
.hero__cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px; background: transparent;
  border: 1px solid var(--gold-soft);
  color: #f3ead2;
  font-family: var(--font-sans); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.4s; position: relative;
}
.hero__cta::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); z-index: -1;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.hero__cta:hover { border-color: var(--gold); }
.hero__cta:hover::after { transform: scaleX(1); }
.hero__cta .arrow { transition: transform 0.3s; }
.hero__cta:hover .arrow { transform: translateX(6px); }
.hero__orn { margin-top: 40px; color: var(--gold); opacity: 0.7; }

/* ===================== TRANSITION BAND (DARK → CREAM) ===================== */
.shift {
  position: relative;
  height: 220px;
  background: linear-gradient(180deg,
    var(--ink-deep) 0%,
    #1a2327 30%,
    #5a5a55 60%,
    #c8bba3 85%,
    var(--cream) 100%);
  overflow: hidden;
}
.shift::before {
  content: ""; position: absolute; left: 50%; bottom: 44px;
  transform: translateX(-50%);
  width: 80px; height: 1px; background: var(--gold); opacity: 0.55;
}
.shift::after {
  content: ""; position: absolute; left: 50%; bottom: 39px;
  transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: 0.85;
}
.shift__mark {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic; font-size: 22px;
  color: rgba(251,248,241,0.72);
  letter-spacing: 0.04em;
  text-shadow: 0 0 24px rgba(15,26,31,0.4);
}

/* ===================== CHAPTERS (LIGHT) ===================== */
.chapters-light {
  background: var(--cream);
  padding: 140px 6vw 100px;
}
.chapters-light__inner { max-width: 1040px; margin: 0 auto; }
.chapters-light__title { text-align: center; margin-bottom: 90px; }
.chapters-light__title .eyebrow { color: var(--gold); }
.chapters-light__title h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-top: 18px;
  font-style: italic; font-weight: 400;
  color: var(--ink);
}
.chapter-light {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.chapter-light:last-child { border-bottom: 1px solid var(--line); }
.chapter-light__roman {
  font-family: var(--font-display);
  font-style: italic; font-size: 52px;
  color: var(--gold);
  letter-spacing: 0.04em; line-height: 1;
  padding-top: 8px;
}
.chapter-light__title {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500;
  color: var(--ink);
  margin-bottom: 22px; letter-spacing: 0.01em;
}
.chapter-light__body {
  font-family: var(--font-body);
  font-size: 17.5px; line-height: 1.85;
  color: var(--body); max-width: 640px;
}
@media (max-width: 760px) {
  .chapter-light { grid-template-columns: 1fr; gap: 20px; }
  .chapter-light__roman { font-size: 40px; }
}

/* ===================== DISTANCE COMPASS (SIDE BOX) ===================== */
.compass {
  background: var(--paper);
  padding: 120px 6vw;
}
.compass__wrap {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 80px;
  align-items: center;
}
.compass__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.compass__caption {
  padding-top: 8px;
}
.compass__caption .eyebrow {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
}
.compass__caption h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  color: var(--ink);
  margin: 20px 0 24px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.compass__caption p {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.8;
  color: var(--body);
  max-width: 440px;
}
.compass__caption .rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 28px 0;
  opacity: 0.7;
}
.compass__inner {
  background: var(--cream);
  padding: 40px 40px;
  border: 1px solid var(--line);
  position: relative;
}
.compass__inner::before,
.compass__inner::after {
  content: ""; position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--gold); opacity: 0.5;
}
.compass__inner::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.compass__inner::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.compass__head {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.compass__row {
  display: flex; justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(135,109,39,0.18);
  gap: 14px;
}
.compass__row:last-child { border-bottom: 0; }
.compass__from {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.compass__dist {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}
.compass__map img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
}
@media (max-width: 1000px) {
  .compass__wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .compass__map { position: static; }
  .compass__wrap .compass__map { order: -1; }
}
@media (max-width: 540px) {
  .compass__inner { padding: 32px 24px; }
  .compass__from { font-size: 15px; }
  .compass__dist { font-size: 10px; }
}

/* ===================== OUR PRODUCTS ===================== */
.products {
  background: var(--paper);
  padding: 20px 6vw 130px;
}
.products__inner { max-width: 1120px; margin: 0 auto; }
.products__head { text-align: center; margin-bottom: 70px; }
.products__head .eyebrow {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em;
}
.products__head h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  font-style: italic; font-weight: 500;
  color: var(--ink); margin-top: 16px;
}
.product-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--cream);
  border: 1px solid var(--gold);
  position: relative;
  min-height: 440px;
  margin-bottom: 60px;
}
.product-card:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .product-card { grid-template-columns: 1fr; }
}
.product-card__pin {
  position: absolute; top: -16px; left: 40px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.05em;
  z-index: 3;
}
.product-card__img {
  position: relative; min-height: 360px;
  background: #0b161b; overflow: hidden;
}
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  object-position: left center;
  filter: saturate(0.92);
}
.product-card__tag {
  position: absolute; bottom: 14px; left: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: #efe6cf;
  background: rgba(15,26,31,0.55);
  padding: 5px 10px; backdrop-filter: blur(4px);
}
.product-card__body {
  padding: 52px 48px;
  display: flex; flex-direction: column; gap: 16px;
}
.product-card__label {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 500;
  color: var(--ink); line-height: 1.05;
  letter-spacing: -0.005em;
}
.product-card__sector {
  font-family: var(--font-display);
  font-style: italic; font-size: 17px;
  color: var(--body-soft);
}
.product-card__specs {
  font-family: var(--font-body);
  font-size: 15.5px; line-height: 1.75;
  color: var(--body);
  padding-top: 10px;
}
.product-card__meta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--body-soft);
  text-transform: uppercase;
}
/* card without a hero image — spec-only variant for plotted / SCO products */
.product-card--spec { grid-template-columns: 1fr; min-height: auto; }
.product-card--spec .product-card__body { padding: 52px 48px; }

/* ===================== CHART / APPRECIATION ===================== */
.chart-section {
  background: var(--cream);
  padding: 130px 6vw;
}
.chart-section__inner {
  max-width: 1120px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 90px; align-items: center;
}
@media (max-width: 900px) {
  .chart-section__inner { grid-template-columns: 1fr; gap: 50px; }
}
.chart-section__head .eyebrow {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em;
}
.chart-section__head h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--ink);
  margin: 14px 0 20px;
  font-weight: 500; line-height: 1.15;
  letter-spacing: -0.005em;
}
.chart-section__head p {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.75;
  color: var(--body);
  max-width: 440px;
}
.chart {
  aspect-ratio: 2 / 1;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px;
  position: relative;
}
.chart svg { width: 100%; height: 100%; display: block; }
.chart .draw {
  stroke-dasharray: 1600; stroke-dashoffset: 1600;
  animation: draw 2.2s ease-out 0.4s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pulseDot {
  0%, 100% { opacity: 0.7; r: 5; }
  50% { opacity: 1; r: 8; }
}
.chart .pulse { animation: pulseDot 2.4s ease-in-out infinite; }

/* ===================== SPEC STRIP (DARK ANCHOR) ===================== */
.spec-strip {
  background: var(--ink-deep);
  padding: 40px 6vw;
  border-top: 1px solid rgba(201,176,117,0.12);
  border-bottom: 1px solid rgba(201,176,117,0.12);
}
.spec-strip__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  gap: 18px 44px;
  justify-content: center; align-items: center;
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-soft);
}
.spec-strip__inner span + span::before {
  content: '·'; color: var(--gold); margin-right: 44px; opacity: 0.7;
}

/* ===================== PROPOSITIONS (LIGHT — SIDE LAYOUT) ===================== */
.propositions-light {
  background: var(--paper);
  padding: 140px 6vw 140px;
}
.propositions-light__inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 120px;
  align-items: start;
}
.propositions-light__head {
  position: sticky; top: 80px;
  padding-top: 8px;
}
.propositions-light__head .eyebrow {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
}
.propositions-light__head h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  color: var(--ink);
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.propositions-light__head .rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 32px 0 0;
  opacity: 0.7;
}
.propositions-light__head .side-note {
  margin-top: 28px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px; line-height: 1.7;
  color: var(--body-soft);
  max-width: 320px;
}
.propositions-light__list {
  min-width: 0;
  border-top: 1px solid var(--line);
}
.prop-light {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px; align-items: baseline;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.4s;
}
.prop-light:hover { background: var(--cream); }
.prop-light__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px; color: var(--gold);
  line-height: 1; font-weight: 400;
}
.prop-light__text {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.75;
  color: var(--body);
}
@media (max-width: 1000px) {
  .propositions-light__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .propositions-light__head { position: static; }
}
@media (max-width: 760px) {
  .prop-light { grid-template-columns: 1fr; gap: 10px; }
  .prop-light__num { font-size: 32px; }
}

/* ===================== FINALE (DARK BOOKEND) ===================== */
.finale {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,176,117,0.18), transparent 60%),
    var(--ink-deep);
  padding: 160px 6vw;
  text-align: center;
}
.finale__inner { max-width: 760px; margin: 0 auto; }
.finale h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  color: #f3ead2; margin-bottom: 32px;
  font-style: italic; font-weight: 400;
}
.finale p {
  font-family: var(--font-body);
  font-style: italic; font-size: 18px;
  line-height: 1.75; color: #c8bea8;
  max-width: 600px; margin: 0 auto 48px;
}
.finale__cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 20px 44px; background: var(--gold);
  color: var(--ink-deep);
  font-family: var(--font-sans); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; transition: all 0.3s;
}
.finale__cta:hover {
  background: #d9b668;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,176,117,0.25);
}
.finale__contact {
  margin-top: 44px;
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: #7d7566;
}

@keyframes foilShimmer {
  0%,100% { filter: drop-shadow(0 0 32px rgba(201,176,117,0.2)); }
  50%    { filter: drop-shadow(0 0 48px rgba(201,176,117,0.32)); }
}
.scarcity__main { animation: foilShimmer 6s ease-in-out infinite; }

/* ===================== SHOWROOM / RENDER GALLERY ===================== */
.showroom { background: var(--paper); padding: 140px 6vw; border-top: 1px solid #e6e1d5; }
.showroom__inner { max-width: 1280px; margin: 0 auto; }
.showroom__head { max-width: 720px; margin-bottom: 64px; }
.showroom__head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
  margin: 12px 0 18px;
}
.showroom__head p {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.6;
  color: #4a4a4a;
  max-width: 640px;
}
.showroom__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.showroom__tile {
  position: relative;
  overflow: hidden;
  background: #0b161b;
  border: 1px solid #e6e1d5;
}
.showroom__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}
.showroom__tile:hover img { transform: scale(1.03); }
.showroom__cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.78) 100%);
  color: #f3ead2;
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px;
}
.showroom__cap em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 14px; text-transform: none;
  letter-spacing: 0; color: #f3ead2;
}
/* 12-col layouts */
.showroom__tile--hero  { grid-column: span 12; aspect-ratio: 16 / 9; }
.showroom__tile--half  { grid-column: span 6;  aspect-ratio: 4 / 3; }
.showroom__tile--third { grid-column: span 4;  aspect-ratio: 3 / 4; }
.showroom__tile--two3  { grid-column: span 8;  aspect-ratio: 16 / 10; }

@media (max-width: 860px) {
  .showroom { padding: 90px 5vw; }
  .showroom__tile--hero,
  .showroom__tile--half,
  .showroom__tile--third,
  .showroom__tile--two3 { grid-column: span 12; aspect-ratio: 4 / 3; }
}
