/* =========================================================================
   home.css — Great Destination Hospitality homepage (v3, roast-fixes)
   Chapter-structured, asymmetric, custom-drawn.
   Real-logo-derived sub-brand accents.
   v3 fixes: cover imagery + bigger medallion + legible TOC,
            explicit BLEND section (terracotta ↔ gold gradient),
            differentiated brand cards with loud marks,
            monumental pull quote,
            flagship hotel treatment (Kadison hero),
            invitation-chapter anchor,
            India-map sense-of-place in colophon,
            softened footer transition.
   ========================================================================= */

/* ---------- Token refinements for real-logo colors ---------- */

:root {
  --ms:        #EFA783;
  --ms-pale:   #FCEDE2;
  --ms-deep:   #C06B40;
  --ms-mark:   #E15B26;
  --ms-yellow: #F7C43A;
  --ms-navy:   #1F3A62;

  --vv:        #C8A968;
  --vv-pale:   #F1E8CE;
  --vv-deep:   #9D8345;
  --vv-light:  #E0C07A;
}

/* ============================================================= */
/* THE COVER — Hero                                               */
/* Hotel-first: full-bleed photograph with editorial overlay card */
/* ============================================================= */

.cover {
  position: relative;
  min-height: 100vh;
  padding: clamp(40px, 6vh, 72px) var(--container-pad) clamp(32px, 5vh, 56px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(24px, 3vh, 40px);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
}

/* Background video — full-bleed, covers the hero, sits beneath everything.
   Place the looping reel at assets/video/hero.mp4 (and optionally hero.webm).
   While the video loads (or if it 404s), the <video>'s poster attribute
   shows the fallback hotel photograph so the cover never appears bare. */
.cover-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  background: var(--ink);
}

/* Cinematic warm wash over the video for text legibility */
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    180deg,
    rgba(42, 40, 35, .55) 0%,
    rgba(42, 40, 35, .30) 40%,
    rgba(42, 40, 35, .55) 100%
  );
}
/* Bottom warm blend — MS-pale-left → VV-pale-right, the two palettes meeting */
.cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  z-index: -1;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(42, 40, 35, .35) 55%,
    rgba(42, 40, 35, .75) 100%
  );
  pointer-events: none;
}

/* Corner trim-marks — now on dark photography */
.cover .corner-mark {
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid rgba(250, 246, 238, .55);
  opacity: .85;
  z-index: 1;
}
.cover .corner-mark.tl { top: 22px; left: 22px; border-right: 0; border-bottom: 0; }
.cover .corner-mark.tr { top: 22px; right: 22px; border-left: 0; border-bottom: 0; }
.cover .corner-mark.bl { bottom: 22px; left: 22px; border-right: 0; border-top: 0; }
.cover .corner-mark.br { bottom: 22px; right: 22px; border-left: 0; border-top: 0; }

/* Volume/Date strip — on dark backdrop */
.cover-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s5);
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, .7);
  position: relative;
  z-index: 2;
}
.cover-strip .s-left  { text-align: left; }
.cover-strip .s-cent  {
  font-family: var(--fd);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--vv-light);
  opacity: .95;
}
.cover-strip .s-right { text-align: right; }

/* Cover body: monogram + wordmark + sub */
.cover-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(24px, 4vh, 56px) 0;
  position: relative;
  z-index: 2;
}

/* MEDALLION — classical gold mark on the dark photograph */
.monogram-wrap {
  position: relative;
  margin-bottom: clamp(24px, 4vh, 44px);
}
.monogram-wrap .m-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 78%);
  font-family: var(--fb);
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, .65);
  white-space: nowrap;
}
.monogram {
  width: clamp(120px, 12vw, 170px);
  height: clamp(120px, 12vw, 170px);
  color: var(--vv-light);
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.35));
}

.cover-wordmark {
  font-family: var(--fd);
  font-weight: 400;
  font-size: clamp(56px, 8.4vw, 140px);
  letter-spacing: -0.015em;
  line-height: .96;
  color: var(--paper);
  margin: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
}
.cover-wordmark .line-a,
.cover-wordmark .line-b {
  display: block;
}
.cover-wordmark em {
  font-style: italic;
  color: var(--vv-light);
  position: relative;
}
.cover-wordmark em::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%; bottom: .04em;
  height: .12em;
  background: var(--vv);
  opacity: .35;
  z-index: -1;
}

.cover-sub {
  font-family: var(--fd);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 24px);
  color: rgba(250, 246, 238, .88);
  max-width: 46ch;
  margin: clamp(20px, 3vh, 32px) auto 0;
  line-height: 1.45;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}

/* Classical rule ornament */
.rule-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 32px);
  margin: clamp(20px, 3vh, 36px) auto 0;
  color: var(--vv-light);
  max-width: 520px;
}
.rule-ornament::before, .rule-ornament::after {
  content: "";
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250,246,238,.7) 30%, rgba(250,246,238,.7) 70%, transparent);
  opacity: .7;
}
.rule-ornament svg { width: 20px; height: 20px; }

/* Table of contents — on dark backdrop */
.cover-toc {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
  padding-top: clamp(24px, 3vh, 36px);
  border-top: 1px solid rgba(250, 246, 238, .22);
  color: var(--paper);
  position: relative;
  z-index: 2;
}
.cover-toc .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 8px 0 4px;
  border-top: 3px solid rgba(250, 246, 238, .85);
  transition: border-color var(--m-base) var(--ease), color var(--m-base) var(--ease);
}
.cover-toc .item:hover { border-color: var(--vv-light); color: var(--vv-light); }
.cover-toc .item .no {
  font-family: var(--fd);
  font-style: italic;
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--vv-light);
  letter-spacing: 0;
}
.cover-toc .item .name {
  font-family: var(--fd);
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.2;
  color: var(--paper);
}
.cover-toc .item .tag {
  font-family: var(--fb);
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, .55);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .cover-toc {
    grid-template-columns: 1fr 1fr;
  }
  .cover .corner-mark { width: 16px; height: 16px; }
}

/* ============================================================= */
/* CHAPTER heads — shared across all chapters                     */
/* ============================================================= */

.chapter-head {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: baseline;
  gap: clamp(16px, 2vw, 32px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad) clamp(32px, 5vh, 64px);
  position: relative;
}
.chapter-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--container-pad);
  right: var(--container-pad);
  height: 1px;
  background: var(--line);
}
.chapter-no {
  font-family: var(--fd);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 22px);
  letter-spacing: .02em;
  color: var(--ms-deep);
  padding-top: clamp(24px, 3vh, 40px);
  line-height: 1;
}
.chapter-title {
  font-family: var(--fd);
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  padding-top: clamp(24px, 3vh, 40px);
  margin: 0;
  max-width: 18ch;
}
.chapter-title em { font-style: italic; color: var(--ms-deep); }
.chapter-title.is-vv em { color: var(--vv-deep); }

/* ============================================================= */
/* CHAPTER I — On The Founding                                    */
/* ============================================================= */

.ch-founding {
  padding: clamp(64px, 10vh, 130px) 0 clamp(56px, 8vh, 100px);
  background: var(--paper);
  position: relative;
}
.founding-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 220px 1fr 360px;
  gap: clamp(32px, 4.5vw, 72px);
}
@media (max-width: 1100px) {
  .founding-grid { grid-template-columns: 200px 1fr; }
  .founding-grid .founding-figures { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); margin-top: var(--s6); }
}
@media (max-width: 900px) {
  .founding-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .founding-grid .founding-figures { grid-template-columns: 1fr; }
}

/* Right-rail photograph column */
.founding-figures {
  display: grid;
  gap: var(--s4);
  position: sticky;
  top: 84px;
  align-self: start;
}
.founding-figures .fig {
  position: relative;
  overflow: hidden;
  background: var(--paper-soft);
}
.founding-figures .fig .fig-img {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  display: block;
  transition: transform 1200ms var(--ease);
}
.founding-figures .fig:hover .fig-img { transform: scale(1.03); }
.founding-figures .fig .fig-caption {
  font-family: var(--fb);
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: var(--s3) 0 0;
  display: flex;
  justify-content: space-between;
}
.founding-figures .fig .fig-caption em {
  font-family: var(--fd);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
.founding-figures .fig.is-small .fig-img { aspect-ratio: 3/2; }

.founding-aside {
  border-top: 1px solid var(--ink);
  padding-top: var(--s5);
  display: grid;
  gap: var(--s4);
  align-self: start;
  position: sticky;
  top: 84px;
}
.founding-aside .pair { display: grid; gap: 4px; }
.founding-aside .pair span {
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.founding-aside .pair b {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .01em;
}
.founding-aside .pair b em { font-style: italic; }

.founding-body {
  max-width: 720px;
  position: relative;
}
.founding-body p {
  font-family: var(--fd);
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 var(--s5) 0;
}
.founding-body p em { font-style: italic; color: var(--ms-deep); }

.drop-cap {
  float: left;
  font-family: var(--fd);
  font-style: italic;
  font-weight: 400;
  font-size: 6.4em;
  line-height: .78;
  margin: .02em .08em -.04em 0;
  color: var(--ms-deep);
  text-shadow: 0 1px 0 rgba(42,40,35,.04);
}

/* MONUMENTAL pull-quote — now actually lands like an editorial moment */
.pull-quote {
  position: relative;
  margin: clamp(64px, 9vh, 120px) 0 clamp(48px, 6vh, 88px);
  padding: clamp(48px, 6vh, 80px) 0 clamp(40px, 5vh, 72px) clamp(96px, 11vw, 180px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pull-quote::before {
  content: "“";
  position: absolute;
  left: -8px;
  top: -28px;
  font-family: var(--fd);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(220px, 22vw, 360px);
  line-height: .72;
  color: var(--vv);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -.05em;
}
.pull-quote::after {
  content: "";
  position: absolute;
  left: 0; right: 20%;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--ms-deep), var(--vv-deep));
  opacity: .4;
}
.pull-quote blockquote {
  margin: 0;
  font-family: var(--fd);
  font-style: italic;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.2;
  color: var(--ink);
  max-width: 22ch;
  position: relative;
  z-index: 1;
  letter-spacing: -.008em;
}
.pull-quote cite {
  display: block;
  margin-top: var(--s5);
  font-family: var(--fb);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  position: relative;
  z-index: 1;
}
.pull-quote cite::before { content: "— "; }

.signature-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 3vh, 40px);
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.signature-strip svg { width: 10px; height: 10px; color: var(--vv-deep); }
.signature-strip em {
  font-family: var(--fd);
  font-style: italic;
  font-size: 18px;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--ink);
  margin: 0 6px;
}

/* ============================================================= */
/* THE BLEND — where the two brands visibly meet                  */
/* The single most important moment on the page.                  */
/* ============================================================= */

.blend {
  position: relative;
  padding: clamp(80px, 11vh, 150px) 0;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    90deg,
    var(--ms-pale) 0%,
    var(--ms-pale) 20%,
    #F7EEDC 50%,
    var(--vv-pale) 80%,
    var(--vv-pale) 100%
  );
}
/* Dual hotel-photograph backdrop — MS interior on left, VIVIDUS on right */
.blend::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    /* Left half — MS hotel (warm, lived-in) */
    linear-gradient(
      90deg,
      rgba(252, 237, 226, .86) 0%,
      rgba(252, 237, 226, .94) 38%,
      rgba(247, 238, 220, .98) 50%,
      rgba(241, 232, 206, .94) 62%,
      rgba(241, 232, 206, .86) 100%
    ),
    linear-gradient(
      90deg,
      url('https://images.unsplash.com/photo-1611892440504-42a792e24d32?w=1200&q=82&auto=format&fit=crop') 0 / 50% 100% no-repeat,
      url('https://images.unsplash.com/photo-1564078516393-cf04bd966897?w=1200&q=82&auto=format&fit=crop') 50% / 50% 100% no-repeat
    );
  background-size: cover, cover;
  background-position: center, center;
}
/* Subtle warm glow markers */
.blend::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(225, 91, 38, .10), transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(200, 169, 104, .14), transparent 55%);
}
/* Absolute-positioned hotel images (since background-image can't layer two different-url images side-by-side reliably across browsers) */
.blend .b-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: .24;
}
.blend .b-bg .b-half {
  background-size: cover;
  background-position: center;
  filter: saturate(.7);
}
.blend .b-bg .b-half.is-ms {
  background-image: url('https://images.unsplash.com/photo-1611892440504-42a792e24d32?w=1400&q=82&auto=format&fit=crop');
  mask-image: linear-gradient(90deg, black 0%, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 65%, transparent 100%);
}
.blend .b-bg .b-half.is-vv {
  background-image: url('https://images.unsplash.com/photo-1564078516393-cf04bd966897?w=1400&q=82&auto=format&fit=crop');
  mask-image: linear-gradient(-90deg, black 0%, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(-90deg, black 0%, black 65%, transparent 100%);
}
/* Faint hairline bisector — where the two palettes meet */
.blend::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--ms-deep) 30%,
    var(--ink) 50%,
    var(--vv-deep) 70%,
    transparent 100%
  );
  opacity: .22;
  z-index: -1;
}

.blend-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
}
@media (max-width: 900px) {
  .blend-inner { grid-template-columns: 1fr; text-align: center; gap: var(--s6); }
  .blend-inner .b-ms, .blend-inner .b-vv { max-width: 42ch; margin: 0 auto; }
}

.blend .b-ms, .blend .b-vv {
  display: grid;
  gap: var(--s3);
  max-width: 32ch;
}
.blend .b-ms { justify-self: end; text-align: right; }
.blend .b-vv { justify-self: start; text-align: left; }
@media (max-width: 900px) {
  .blend .b-ms, .blend .b-vv { justify-self: center; text-align: center; }
}

.blend .b-eyebrow {
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.blend .b-ms .b-eyebrow::before {
  content: ""; display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ms-mark);
  margin-right: 10px; vertical-align: middle;
}
.blend .b-vv .b-eyebrow::after {
  content: ""; display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--vv-deep);
  margin-left: 10px; vertical-align: middle;
}
.blend .b-name {
  font-family: var(--fd);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}
.blend .b-ms .b-name em { font-style: italic; color: var(--ms-deep); }
.blend .b-vv .b-name em { font-style: italic; color: var(--vv-deep); }
.blend .b-line {
  font-family: var(--fd);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.4;
  color: var(--ink-soft);
}

/* Centre medallion — proper, with gradient ring */
.blend-seal {
  position: relative;
  width: clamp(140px, 16vw, 220px);
  height: clamp(140px, 16vw, 220px);
  display: grid;
  place-items: center;
}
.blend-seal .b-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 135deg,
    var(--ms-deep) 0deg,
    var(--ms) 60deg,
    var(--paper) 150deg,
    var(--vv) 240deg,
    var(--vv-deep) 330deg,
    var(--ms-deep) 360deg
  );
  padding: 2px;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .8;
}
.blend-seal .b-disc {
  position: relative;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #FEFBF4, var(--paper) 60%, var(--paper-soft) 100%);
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 0 1px rgba(42,40,35,.08),
    0 6px 24px rgba(42,40,35,.06);
}
.blend-seal svg {
  width: 68%;
  height: 68%;
  color: var(--ink);
}
.blend-seal .b-held {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fb);
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ============================================================= */
/* CHAPTER II — The Brands                                        */
/* ============================================================= */

.ch-brands {
  padding: clamp(56px, 9vh, 120px) 0;
  background: var(--paper-soft);
  position: relative;
  overflow: hidden;
}

.brands-pair {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
}

.brands-pair-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 6vw, 96px);
  align-items: start;
  position: relative;
}
@media (max-width: 900px) {
  .brands-pair-inner { grid-template-columns: 1fr; gap: var(--s8); }
}

/* Individual brand card — asymmetric + loud brand marks */
.brand-card {
  display: grid;
  gap: var(--s5);
  position: relative;
  padding: clamp(20px, 2vw, 32px);
  border: 1px solid var(--line);
  background: var(--paper);
}
.brand-card.is-ms {
  margin-top: 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--ms-pale) 100%);
  border-color: rgba(192, 107, 64, .18);
}
.brand-card.is-vv {
  margin-top: clamp(40px, 7vh, 96px);
  background: linear-gradient(180deg, var(--paper) 0%, var(--vv-pale) 100%);
  border-color: rgba(157, 131, 69, .2);
}
@media (max-width: 900px) {
  .brand-card.is-ms, .brand-card.is-vv { margin-top: 0; }
}

/* Big loud mark-head at top of each card */
.brand-mark-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--line);
  gap: var(--s4);
}
.brand-mark-head .m-right {
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.5;
}
.brand-mark-head .m-right b {
  display: block;
  font-family: var(--fd);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-weight: 400;
}

/* LOUD MySpace Mondrian mark — scaled up to be the anchor */
.ms-mark-xl {
  display: inline-grid;
  grid-template-columns: 28px 28px 28px;
  grid-template-rows: 22px 22px;
  gap: 3px;
  flex-shrink: 0;
}
.ms-mark-xl div:nth-child(1) { background: transparent; border: 1px solid var(--line); }
.ms-mark-xl div:nth-child(2) { background: var(--ms-yellow); }
.ms-mark-xl div:nth-child(3) { background: var(--ms-mark); }
.ms-mark-xl div:nth-child(4) { background: var(--ms-mark); }
.ms-mark-xl div:nth-child(5) { background: var(--ms-navy); }
.ms-mark-xl div:nth-child(6) { background: var(--ms-navy); }

/* LOUD VIVIDUS shield mark */
.vv-mark-xl {
  width: 64px;
  height: 80px;
  flex-shrink: 0;
  color: var(--vv-deep);
}
.vv-mark-xl svg { width: 100%; height: 100%; }

/* Brand card image — large hero */
.brand-card-img {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 1000ms var(--ease);
}
.brand-card.is-ms .brand-card-img {
  background-image:
    linear-gradient(180deg, rgba(42,40,35,0) 55%, rgba(42,40,35,.48) 100%),
    url('https://images.unsplash.com/photo-1611892440504-42a792e24d32?w=1400&q=82&auto=format&fit=crop');
}
.brand-card.is-vv .brand-card-img {
  background-image:
    linear-gradient(180deg, rgba(42,40,35,0) 55%, rgba(42,40,35,.48) 100%),
    url('https://images.unsplash.com/photo-1564078516393-cf04bd966897?w=1400&q=82&auto=format&fit=crop');
}
.brand-card-img::after {
  content: attr(data-plate);
  position: absolute;
  inset: auto 16px 14px 16px;
  color: rgba(255,255,255,.9);
  font-family: var(--fb);
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
}

/* 3-shot mini gallery strip beneath brand card */
.brand-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: calc(var(--s5) * -1);
  margin-bottom: var(--s3);
}
.brand-gallery .g-shot {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  transition: transform 600ms var(--ease), opacity 600ms var(--ease);
  opacity: .92;
}
.brand-gallery .g-shot:hover { transform: scale(1.03); opacity: 1; }

/* Brand card title + body */
.brand-card h3 {
  font-family: var(--fd);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: var(--s3) 0 0 0;
}
.brand-card h3 em { font-style: italic; color: var(--ms-deep); }
.brand-card.is-vv h3 em { color: var(--vv-deep); }

.brand-card-tag {
  font-family: var(--fd);
  font-style: italic;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.3;
  color: var(--ink-soft);
  margin: 0;
  max-width: 24ch;
}
.brand-card-tag::before { content: "“"; margin-right: 2px; opacity: .6; color: var(--ms-deep); }
.brand-card-tag::after  { content: "”"; margin-left: 2px; opacity: .6; color: var(--ms-deep); }
.brand-card.is-vv .brand-card-tag::before,
.brand-card.is-vv .brand-card-tag::after { color: var(--vv-deep); }

.brand-card-body {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
  max-width: 42ch;
}

.brand-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: all var(--m-base) var(--ease);
  align-self: start;
  margin-top: var(--s3);
}
.brand-card-cta::after { content: "→"; transition: transform var(--m-base) var(--ease); }
.brand-card.is-ms .brand-card-cta:hover { color: var(--ms-deep); border-color: var(--ms-deep); }
.brand-card.is-vv .brand-card-cta:hover { color: var(--vv-deep); border-color: var(--vv-deep); }
.brand-card-cta:hover::after { transform: translateX(6px); }

/* ============================================================= */
/* CHAPTER III — The Collection (editorial hotels index)          */
/* FLAGSHIP treatment for Kadison, file-card style for the rest.  */
/* ============================================================= */

.ch-collection {
  padding: clamp(56px, 9vh, 120px) 0 clamp(56px, 9vh, 120px);
  background: var(--paper);
  position: relative;
}

/* Photograph band above the collection — 5 hotel vignettes on a strip */
.collection-strip {
  position: relative;
  max-width: var(--container);
  margin: 0 auto clamp(40px, 6vh, 72px);
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.collection-strip .c-shot {
  position: relative;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 800ms var(--ease);
}
.collection-strip .c-shot::after {
  content: attr(data-label);
  position: absolute;
  bottom: 10px; left: 10px; right: 10px;
  color: rgba(255,255,255,.95);
  font-family: var(--fb);
  font-size: 8.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,.55);
}
.collection-strip .c-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,40,35,0) 55%, rgba(42,40,35,.55) 100%);
}
.collection-strip .c-shot:hover { transform: scale(1.02); z-index: 1; }
@media (max-width: 900px) {
  .collection-strip { grid-template-columns: repeat(3, 1fr); }
  .collection-strip .c-shot:nth-child(4),
  .collection-strip .c-shot:nth-child(5) { display: none; }
}

.hotels-list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  list-style: none;
}

/* FLAGSHIP — first hotel gets a hero treatment */
.hotels-list > li.is-flag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(32px, 5vh, 64px) 0;
  border-bottom: 1px solid var(--line);
  align-items: stretch;
}
.hotels-list > li.is-flag .h-flag-body {
  display: grid;
  align-content: center;
  gap: var(--s4);
  max-width: 48ch;
}
.hotels-list > li.is-flag .h-flag-num {
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 12px;
}
.hotels-list > li.is-flag .h-flag-num::before,
.hotels-list > li.is-flag .h-flag-num::after {
  content: ""; width: 24px; height: 1px; background: var(--ms-deep); opacity: .5;
}
.hotels-list > li.is-flag .h-flag-num::after { display: none; }
.hotels-list > li.is-flag h3 {
  font-family: var(--fd);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.hotels-list > li.is-flag h3 em { font-style: italic; color: var(--ms-deep); }
.hotels-list > li.is-flag .h-flag-city {
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hotels-list > li.is-flag .h-flag-line {
  font-family: var(--fd);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0;
}
.hotels-list > li.is-flag .h-flag-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(16px, 2.4vw, 40px);
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
  margin-top: var(--s4);
}
.hotels-list > li.is-flag .h-flag-stats .st span {
  display: block;
  font-family: var(--fb);
  font-size: 9px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.hotels-list > li.is-flag .h-flag-stats .st b {
  font-family: var(--fd);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
}
.hotels-list > li.is-flag .h-flag-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: var(--s5);
  font-family: var(--fb);
  font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  align-self: start;
  transition: all var(--m-base) var(--ease);
}
.hotels-list > li.is-flag .h-flag-cta:hover {
  color: var(--ms-deep); border-color: var(--ms-deep);
}
.hotels-list > li.is-flag .h-flag-cta::after { content: "→"; }
.hotels-list > li.is-flag .h-flag-img {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(42,40,35,0) 60%, rgba(42,40,35,.25) 100%),
    url('https://images.unsplash.com/photo-1611892440504-42a792e24d32?w=1400&q=82&auto=format&fit=crop');
}
.hotels-list > li.is-flag .h-flag-img::before {
  content: "PHOTOGRAPHED — MYSPACE KADISON";
  position: absolute;
  bottom: 14px; left: 16px;
  color: rgba(255,255,255,.9);
  font-family: var(--fb);
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.hotels-list > li.is-flag .h-flag-img::after {
  content: "I.";
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--fd);
  font-style: italic;
  font-size: 56px;
  color: rgba(255,255,255,.85);
  line-height: 1;
}
@media (max-width: 900px) {
  .hotels-list > li.is-flag { grid-template-columns: 1fr; gap: var(--s6); }
}

/* Supporting hotel rows — compact */
.hotels-list > li:not(.is-flag) {
  display: grid;
  grid-template-columns: 60px 1fr 240px 40px;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vh, 44px) 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background var(--m-base) var(--ease);
}
.hotels-list > li:not(.is-flag):hover { background: var(--paper-soft); }
@media (max-width: 900px) {
  .hotels-list > li:not(.is-flag) {
    grid-template-columns: 40px 1fr;
    grid-template-areas:
      "num body"
      "img img";
    gap: var(--s4);
  }
  .hotels-list > li:not(.is-flag) .h-num  { grid-area: num; }
  .hotels-list > li:not(.is-flag) .h-body { grid-area: body; }
  .hotels-list > li:not(.is-flag) .h-img  { grid-area: img; aspect-ratio: 16/9 !important; margin-top: var(--s4); }
  .hotels-list > li:not(.is-flag) .h-arrow { display: none; }
}

.h-num {
  font-family: var(--fd);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--ms-deep);
  opacity: .55;
  letter-spacing: .02em;
  line-height: 1;
  text-align: right;
  font-variant-numeric: lining-nums;
  font-style: italic;
}
.hotels-list > li.is-vv .h-num { color: var(--vv-deep); }

.h-body { display: grid; gap: 4px; }
.h-body .h-brand {
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 8px;
}
.h-body .h-brand::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ms-deep);
}
.hotels-list > li.is-vv .h-body .h-brand::before { background: var(--vv-deep); }
.h-body h3 {
  font-family: var(--fd);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 2px 0 6px 0;
}
.hotels-list > li:hover .h-body h3 { color: var(--ms-deep); }
.hotels-list > li.is-vv:hover .h-body h3 { color: var(--vv-deep); }
.h-body .h-line {
  font-family: var(--fd);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0;
}
.h-body .h-city {
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.h-img {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform var(--m-base) var(--ease);
}
.hotels-list > li:hover .h-img { transform: scale(1.015); }

.h-arrow {
  font-family: var(--fd);
  font-size: 22px;
  color: var(--ink-mute);
  opacity: .5;
  transition: transform var(--m-base) var(--ease), color var(--m-base) var(--ease);
  text-align: right;
}
.hotels-list > li:hover .h-arrow { color: var(--ms-deep); opacity: 1; transform: translateX(6px); }
.hotels-list > li.is-vv:hover .h-arrow { color: var(--vv-deep); }

/* ============================================================= */
/* CHAPTER IV — Method                                            */
/* ============================================================= */

.ch-method {
  padding: clamp(56px, 9vh, 120px) 0;
  background: var(--paper-soft);
}
.method-list {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  list-style: none;
}
.method-list > li {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(40px, 6vh, 80px) 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.method-list > li:last-child { border-bottom: 0; }
@media (max-width: 900px) {
  .method-list > li { grid-template-columns: 60px 1fr; }
  .method-list > li .m-img { display: none; }
}

/* Per-method square photograph */
.method-list .m-img {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  justify-self: end;
  width: 200px;
  max-width: 100%;
  transition: transform 800ms var(--ease);
  position: relative;
}
.method-list .m-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,169,104,0), rgba(200,169,104,.15));
}
.method-list > li:hover .m-img { transform: scale(1.03); }
.method-list .m-num {
  font-family: var(--fd);
  font-size: clamp(32px, 3.6vw, 48px);
  font-style: italic;
  font-weight: 400;
  color: var(--vv-deep);
  line-height: 1;
  opacity: .85;
}
.method-list .m-title {
  font-family: var(--fd);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 0 0 var(--s3) 0;
  max-width: 14ch;
}
.method-list .m-body {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 46ch;
  margin: 0;
}

/* ============================================================= */
/* CHAPTER V — An Invitation (void filled with anchor)            */
/* ============================================================= */

.ch-invitation {
  padding: clamp(96px, 14vh, 200px) 0 clamp(80px, 12vh, 160px);
  text-align: center;
  position: relative;
  isolation: isolate;
  color: var(--paper);
  background: var(--ink);
}
/* Full-bleed hotel photograph backdrop */
.ch-invitation::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(
      180deg,
      rgba(42, 40, 35, .72) 0%,
      rgba(42, 40, 35, .55) 40%,
      rgba(42, 40, 35, .82) 100%
    ),
    url('https://images.unsplash.com/photo-1578683010236-d716f9a3f461?w=1800&q=82&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.ch-invitation::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 169, 104, .12), transparent 60%);
}
/* Invitation needs its own chapter-head styling on dark */
.ch-invitation .chapter-head::before { background: rgba(250,246,238,.2); }
.ch-invitation .chapter-no { color: var(--vv-light); }
.ch-invitation .chapter-title { color: var(--paper); }
.ch-invitation .chapter-title.is-vv em { color: var(--vv-light); }
/* Ornament anchor — big stamped star between chapter head and body */
.invitation-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  max-width: 820px;
  margin: 0 auto clamp(32px, 5vh, 56px);
  padding: 0 var(--container-pad);
  color: var(--vv-deep);
}
.invitation-anchor::before, .invitation-anchor::after {
  content: ""; flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vv-deep), transparent);
  opacity: .5;
  max-width: 280px;
}
.invitation-anchor svg {
  width: 52px; height: 52px;
  opacity: .85;
}

.invitation-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.invitation-sub {
  font-family: var(--fd);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  color: rgba(250, 246, 238, .92);
  max-width: 46ch;
  margin: 0 auto clamp(32px, 5vh, 64px);
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.invitation-sub em { font-style: italic; color: var(--vv-light); }

.invitation-tel {
  display: inline-block;
  font-family: var(--fd);
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1;
  color: var(--paper);
  letter-spacing: .02em;
  padding: 0 0 var(--s4);
  border-bottom: 1px solid rgba(250,246,238,.6);
  transition: all var(--m-base) var(--ease);
  font-variant-numeric: lining-nums;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.invitation-tel:hover {
  color: var(--vv-light);
  border-color: var(--vv-light);
}

.invitation-or {
  display: block;
  margin-top: var(--s6);
  font-family: var(--fb);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, .6);
}
.invitation-or a {
  color: var(--vv-light);
  text-transform: none;
  font-family: var(--fd);
  font-style: italic;
  font-size: 16px;
  letter-spacing: .02em;
}
.invitation-anchor { color: var(--vv-light); }
.invitation-anchor::before, .invitation-anchor::after {
  background: linear-gradient(90deg, transparent, var(--vv-light), transparent);
}

/* ============================================================= */
/* COLOPHON (closing) + Kannada anchor + India map placing        */
/* ============================================================= */

.colophon {
  padding: clamp(72px, 11vh, 140px) 0 clamp(40px, 6vh, 72px);
  background: var(--paper-soft);
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
/* Subtle photograph texture behind the colophon */
.colophon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(244, 237, 222, .96), rgba(244, 237, 222, .98)),
    url('https://images.unsplash.com/photo-1582510003544-4d00b7f74220?w=1600&q=82&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: .96;
}

/* Regional sense-of-place band — India map with 6 dots */
.place-band {
  max-width: var(--container);
  margin: 0 auto clamp(48px, 7vh, 88px);
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}
.place-band .p-col { display: grid; gap: var(--s2); }
.place-band .p-col.left { justify-items: end; text-align: right; }
.place-band .p-col.right { justify-items: start; text-align: left; }
.place-band .p-kicker {
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.place-band .p-line {
  font-family: var(--fd);
  font-style: italic;
  font-size: clamp(15px, 1.25vw, 18px);
  color: var(--ink-soft);
}
.place-band .p-line b {
  color: var(--ink);
  font-weight: 500;
  font-style: normal;
  font-family: var(--fd);
}

.place-map {
  width: clamp(200px, 22vw, 320px);
  height: auto;
  color: var(--ink);
}
.place-map .m-outline { stroke: currentColor; stroke-width: .6; fill: none; opacity: .35; }
.place-map .m-state   { stroke: currentColor; stroke-width: .3; fill: none; opacity: .2; }
.place-map .m-pin {
  fill: var(--ms-deep);
}
.place-map .m-pin.is-vv { fill: var(--vv-deep); }
.place-map .m-ring {
  stroke: var(--ms-deep); stroke-width: .5; fill: none; opacity: .6;
}
.place-map .m-ring.is-vv { stroke: var(--vv-deep); }
.place-map .m-label {
  font-family: var(--fb);
  font-size: 6px;
  letter-spacing: .18em;
  text-transform: uppercase;
  fill: var(--ink);
  opacity: .7;
}
.place-map .m-cardinal {
  font-family: var(--fd);
  font-style: italic;
  font-size: 7px;
  fill: var(--ink-mute);
}
@media (max-width: 900px) {
  .place-band { grid-template-columns: 1fr; text-align: center; }
  .place-band .p-col.left, .place-band .p-col.right { justify-items: center; text-align: center; }
  .place-map { margin: 0 auto; }
}

.colophon-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.colophon .kn {
  font-family: var(--fk);
  font-weight: 500;
  font-size: clamp(72px, 10vw, 148px);
  line-height: 1;
  color: var(--vv-deep);
  display: block;
  margin-bottom: var(--s5);
  opacity: .88;
}
.colophon .welcome {
  font-family: var(--fd);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--ink);
  margin: 0 auto var(--s6);
  max-width: 22ch;
  line-height: 1.25;
}
.colophon .welcome em { color: var(--ms-deep); }
.colophon .note {
  font-family: var(--fd);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 auto;
}

/* End-of-volume mark — replaced "End of Volume I" wording */
.end-mark {
  max-width: var(--container);
  margin: clamp(48px, 7vh, 80px) auto 0;
  padding: clamp(32px, 4vh, 48px) var(--container-pad) 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s5);
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.end-mark .e-left  { text-align: left; }
.end-mark .e-cent  {
  font-family: var(--fd);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--vv-deep);
}
.end-mark .e-right { text-align: right; }

/* Pre-footer band — the peel seam. Cream edge meets gold hairline just above
   the point where the fixed footer is revealed from below. */
.pre-footer {
  position: relative;
  height: 64px;
  background: linear-gradient(
    180deg,
    var(--paper-soft) 0%,
    var(--paper-deep) 70%,
    var(--paper-deep) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
}
.pre-footer::before, .pre-footer::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: 32%;
  background: linear-gradient(90deg, transparent, var(--vv), transparent);
  opacity: .6;
}
.pre-footer::before { left: 0; }
.pre-footer::after  { right: 0; }
.pre-footer .pf-mark {
  width: 10px; height: 10px;
  background: var(--vv);
  transform: rotate(45deg);
  opacity: .8;
}

/* ============================================================= */
/* Small reusable ornaments                                        */
/* ============================================================= */

.orn-diamond {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--vv);
  transform: rotate(45deg);
  opacity: .75;
}

.hair {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vv) 40%, var(--vv) 60%, transparent);
  opacity: .6;
  margin: 0;
  border: 0;
}
