/* ============================================================
   TorrentPier · sunset.torrentpier.com
   A notice of closure, set as an archival document.
   Aesthetic: paper · blueprint · technical · with a red horizon.
   ============================================================ */

:root {
  /* Paper & ink */
  --paper-1: #ece9e0;          /* primary paper */
  --paper-2: #e3dfd3;          /* shadow paper */
  --paper-3: #d5d1c2;          /* deep paper */
  --ink: #0c0c0a;
  --ink-2: #2a2a26;
  --ink-3: #5b594f;
  --ink-4: #8a877a;

  /* Lines */
  --line: #b7b3a3;
  --line-fine: #cfcbbb;

  /* The accent: a red that reads as a wax-seal / printer's ink */
  --red: #c2371e;
  --red-deep: #7a1a08;
  --red-darker: #5a1305;
  --red-glow: #ff5b30;
  --red-soft: #d6a299;

  /* Type — all picked for full Cyrillic coverage so nothing falls back to a system font. */
  --f-display: "Unbounded", "PT Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-sans:    "Unbounded", "PT Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-serif:   "Spectral", "PT Serif", Georgia, "Times New Roman", serif;
  --f-mono:    "JetBrains Mono", "SFMono-Regular", ui-monospace, "Menlo", monospace;

  /* Rhythm */
  --measure: 64ch;
  --gutter: clamp(20px, 4vw, 56px);

  --t-1: 11px;
  --t-2: 12px;
  --t-3: 13px;
  --t-body: clamp(16px, 1.07vw, 18px);
  --t-lede: clamp(20px, 1.55vw, 26px);
}

* { box-sizing: border-box; }

html { background: var(--paper-1); }
body {
  margin: 0;
  font-family: var(--f-serif);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper-1);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ----- Blueprint grid (very faint dot grid in the margins) ----- */
.grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, var(--line) 0.7px, transparent 0.8px);
  background-size: 28px 28px;
  background-position: 0 0;
  opacity: 0.18;
  mask-image:
    linear-gradient(90deg, black 0, black 6%, transparent 7%, transparent 93%, black 94%, black 100%);
  -webkit-mask-image:
    linear-gradient(90deg, black 0, black 6%, transparent 7%, transparent 93%, black 94%, black 100%);
}

/* ----- Corner brackets ----- */
.bracket {
  position: fixed;
  width: 28px;
  height: 28px;
  z-index: 5;
  pointer-events: none;
  color: var(--ink-3);
}
.bracket::before, .bracket::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.bracket-tl { top: 14px; left: 14px; }
.bracket-tl::before { top: 0; left: 0; width: 1.5px; height: 22px; }
.bracket-tl::after  { top: 0; left: 0; width: 22px; height: 1.5px; }

.bracket-tr { top: 14px; right: 14px; }
.bracket-tr::before { top: 0; right: 0; width: 1.5px; height: 22px; }
.bracket-tr::after  { top: 0; right: 0; width: 22px; height: 1.5px; }

.bracket-bl { bottom: 14px; left: 14px; }
.bracket-bl::before { bottom: 0; left: 0; width: 1.5px; height: 22px; }
.bracket-bl::after  { bottom: 0; left: 0; width: 22px; height: 1.5px; }

.bracket-br { bottom: 14px; right: 14px; }
.bracket-br::before { bottom: 0; right: 0; width: 1.5px; height: 22px; }
.bracket-br::after  { bottom: 0; right: 0; width: 22px; height: 1.5px; }

/* ----- Registration crosshairs on the page edges ----- */
.cross {
  position: absolute;
  width: 14px;
  height: 14px;
  color: var(--ink-4);
  pointer-events: none;
  z-index: 3;
}
.cross::before, .cross::after {
  content: "";
  position: absolute;
  background: currentColor;
  opacity: 0.55;
}
.cross::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.cross::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.cross-1 { top: 480px; right: 28px; }
.cross-2 { top: 1100px; left: 28px; }
.cross-3 { top: 1900px; right: 28px; }
.cross-4 { top: 2700px; left: 28px; }

/* ----- Vertical rail (left margin) ----- */
.rail {
  position: fixed;
  top: 50px;
  bottom: 50px;
  left: 36px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--line) 8%, var(--line) 92%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* ----- Main sheet container ----- */
.sheet {
  position: relative;
  z-index: 4;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px var(--gutter) 80px;
}

/* ============================================================
   Doc header (blueprint metadata strip)
   ============================================================ */

.doc-head {
  display: flex;
  align-items: center;
  font-family: var(--f-mono);
  font-size: var(--t-1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 64px;
}
.doc-head-l { display: inline-flex; align-items: center; gap: 8px; }
.doc-head .sep { color: var(--ink-4); }

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
  top: -1px;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  margin-bottom: 0;
  animation: settle 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-mast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-logo {
  display: block;
  height: 48px;
  width: auto;
  filter: contrast(1.05);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--f-mono);
  font-size: var(--t-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Eyebrow as a link: a sloppy hand-drawn red-ink ring around the archive callout */
a.eyebrow {
  position: relative;
  padding: 14px 34px 16px;
  color: var(--red-deep);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 1;
}
a.eyebrow::before {
  content: "";
  position: absolute;
  inset: -5px -14px;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 60' preserveAspectRatio='none'><path d='M 28,32 C 18,12 80,5 132,6 C 178,8 240,4 302,12 C 318,22 314,40 268,44 C 224,52 130,55 70,50 C 22,46 4,38 16,30 C 10,18 32,20 50,24' fill='none' stroke='%237a1a08' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/><path d='M 36,28 C 30,29 30,33 38,35' fill='none' stroke='%237a1a08' stroke-width='1.6' stroke-linecap='round'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(-1.8deg);
  transform-origin: center;
  transition: transform 0.25s ease;
}
a.eyebrow:hover { color: var(--red-darker); }
a.eyebrow:hover::before { transform: rotate(-0.6deg) scale(1.035); }
a.eyebrow:hover .eyebrow-arrow { transform: translateX(3px); }
a.eyebrow:focus-visible {
  outline: 2px solid var(--red-deep);
  outline-offset: 6px;
  border-radius: 2px;
}
.eyebrow-arrow {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 900;
  transition: transform 0.2s ease;
}

.hero-title {
  margin: 0 0 28px;
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-name {
  display: block;
  font-size: clamp(34px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero-dates {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(36px, 6.4vw, 96px);
  margin-top: 0;
  color: var(--ink-2);
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: -0.03em;
  line-height: 0.92;
}
.hero-em {
  display: inline-block;
  margin: 0 0.16em;
  color: var(--ink-3);
  position: relative;
  top: -0.12em;
  font-weight: 800;
}

.hero-lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-lede);
  color: var(--ink-2);
  margin: 0 0 56px;
  max-width: 56ch;
  line-height: 1.45;
}

/* ----- Hero strip: stamp + meta beneath the title ----- */
.hero-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.hero-strip::before {
  content: "§";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  background: var(--paper-1);
  padding: 0 10px;
  color: var(--ink-4);
  font-family: var(--f-mono);
  font-size: 14px;
}

.stamp {
  position: relative;
  display: inline-block;
  transform: rotate(-5deg);
  animation: stamp-in 1.1s cubic-bezier(0.18, 0.84, 0.32, 1) 0.4s both;
  flex-shrink: 0;
}
.stamp-frame {
  border: 2.5px solid var(--ink-2);
  padding: 14px 26px 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: transparent;
  box-shadow: inset 0 0 0 4px transparent;
  outline: 1px solid var(--ink-2);
  outline-offset: 3px;
  font-family: var(--f-display);
  text-transform: uppercase;
  color: var(--ink-2);
  filter: contrast(1.1);
  position: relative;
}
/* Distressed stamp texture using SVG mask */
.stamp-frame::after {
  content: "";
  position: absolute;
  inset: -8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='120'><filter id='r'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23r)'/></svg>");
  mix-blend-mode: lighten;
  opacity: 0.45;
  pointer-events: none;
}
.stamp-l1 {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
}
.stamp-l2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 2px;
}
.stamp-rule {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink-2);
  margin: 6px 0 4px;
  opacity: 0.6;
}
.stamp-l3 {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.24em;
}

.meta {
  margin: 0;
  padding: 0;
  font-family: var(--f-mono);
  font-size: var(--t-2);
}
.meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line-fine);
}
.meta-row:last-child { border-bottom: none; }
.meta-row dt {
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  padding-top: 2px;
}
.meta-row dd {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.meta-row-accent dd {
  color: var(--red-deep);
  font-weight: 700;
}
.meta-row-accent dt {
  color: var(--red);
}

/* ============================================================
   Section blocks
   ============================================================ */

.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 56px;
  height: 1px;
  position: relative;
}
.rule::after {
  content: "·";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  background: var(--paper-1);
  padding: 0 12px;
  color: var(--ink-4);
  font-family: var(--f-mono);
}

.block {
  position: relative;
  max-width: var(--measure);
  margin: 0 auto 64px;
  padding: 0;
}
.block-lede { margin-bottom: 80px; }

.section-mark {
  font-family: var(--f-mono);
  font-size: var(--t-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-mark::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--ink);
}

.block p {
  font-family: var(--f-serif);
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 1.1em;
}

.lede-prose {
  font-family: var(--f-serif) !important;
  font-style: italic;
  font-size: var(--t-lede) !important;
  line-height: 1.45 !important;
  color: var(--ink) !important;
  font-weight: 400;
}

[data-placeholder] {
  color: var(--ink-3);
  position: relative;
}
[data-placeholder]::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 0.55em;
  bottom: 0.4em;
  width: 2px;
  background: var(--line);
  opacity: 0.7;
}

/* Inline changelog list for the v3.0 feature roll-up */
.changelog {
  list-style: none;
  margin: 0.4em 0 1.6em;
  padding: 0;
}
.changelog li {
  font-family: var(--f-serif);
  font-size: var(--t-body);
  color: var(--ink-2);
  line-height: 1.5;
  padding: 7px 0 8px 28px;
  position: relative;
  border-bottom: 1px dashed var(--line-fine);
}
.changelog li:last-child { border-bottom: none; }
.changelog li::before {
  content: "—";
  position: absolute;
  left: 2px;
  top: 7px;
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--ink-4);
}

/* Credits-style monospaced name lists for the thanks section */
.block p.thanks-list {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0 0 0.6em;
}
.thanks-tag {
  display: inline-block;
  font-size: var(--t-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-right: 14px;
}

/* ============================================================
   Archive links
   ============================================================ */

.links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.link {
  border-top: 1px solid var(--line);
}
.link:last-child { border-bottom: 1px solid var(--line); }
.link a {
  display: grid;
  grid-template-columns: 48px 1fr 32px;
  align-items: start;
  gap: 18px;
  padding: 22px 6px;
  text-decoration: none;
  color: var(--ink);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.link a:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.link a:hover .link-arrow { transform: translateX(4px); }
.link a:hover .link-title { color: var(--red-deep); }
.link-num {
  font-family: var(--f-mono);
  font-size: var(--t-2);
  color: var(--ink-4);
  font-feature-settings: "tnum" 1;
  padding-top: 4px;
  letter-spacing: 0.04em;
}
.link-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.link-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  transition: color 0.2s ease;
}
.link-desc {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.4;
  max-width: 56ch;
}
.link-arrow {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink-3);
  padding-top: 6px;
  transition: transform 0.2s ease;
}

/* ============================================================
   Horizon (teaser block — section §05)
   ============================================================ */

.block-horizon {
  position: relative;
  padding: 32px 0 12px;
  border-top: 1px solid var(--red-soft);
  border-bottom: 1px solid var(--red-soft);
  background:
    linear-gradient(180deg, rgba(194,55,30,0.02) 0%, transparent 60%, rgba(194,55,30,0.05) 100%);
  margin-top: 96px;
}
.section-mark-red {
  color: var(--red-deep);
}
.section-mark-red::before {
  background: var(--red);
}
.horizon-prose {
  font-style: italic;
  color: var(--ink-2) !important;
  font-size: var(--t-lede) !important;
  line-height: 1.5 !important;
  max-width: 50ch;
}
.horizon-coords {
  font-family: var(--f-mono) !important;
  font-style: normal !important;
  font-size: var(--t-2) !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid var(--red-soft);
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
}
.dot-r {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}
.strong-r {
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
}
.sep-r {
  color: var(--red-soft);
}

/* ============================================================
   Signature block (doc-foot)
   ============================================================ */

.doc-foot {
  text-align: center;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.sig-mid {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-4);
}

/* ============================================================
   DAWN — torn paper + red sunrise
   The horizon visual at the very bottom of the page.
   ============================================================ */

.dawn {
  position: relative;
  z-index: 6;
  height: clamp(420px, 60vh, 560px);
  overflow: hidden;
  isolation: isolate;
}

/* Smooth gradient: paper grey → red → dark for the footer. No effects.
   Top stop matches body bg exactly so there's no visible seam. */
.dawn-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    var(--paper-1)  0%,
    var(--paper-1)  6%,
    var(--red)      50%,
    var(--red)      72%,
    var(--red-deep) 92%,
    #2a0805        100%);
  z-index: 1;
}

/* Torn-paper edge: SVG mask covers everything above the irregular line. */
/* The mark: codename phrase + year on the red horizon */
.dawn-mark {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 90%;
  max-width: 1000px;
}
.dawn-mark-rule {
  display: block;
  width: 84px;
  height: 1.5px;
  background: rgba(255, 220, 195, 0.55);
  margin-bottom: 6px;
}

.dawn-mark-title {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #f1e3cc;
  margin: 4px 0;
}

.dawn-mark-year {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 6.8vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #f1e3cc;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

/* ----- Final mini-footer over the dark portion ----- */
.final-foot {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 16px 36px;
  background: #0c0301;
  color: rgba(255, 200, 170, 0.45);
  font-family: var(--f-mono);
  font-size: var(--t-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.final-foot a {
  color: rgba(255, 220, 190, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.final-foot a:hover { color: #fff; }
.final-foot .dot-r { background: rgba(255,170,120,0.6); }

/* ============================================================
   Motion
   ============================================================ */

@keyframes settle {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes stamp-in {
  0%   { opacity: 0; transform: scale(1.35) rotate(2deg); }
  60%  { opacity: 1; transform: scale(0.95) rotate(-9deg); }
  100% { opacity: 1; transform: scale(1) rotate(-6deg); }
}

.doc-head, .block, .doc-foot {
  animation: settle 0.7s ease-out both;
}
.doc-head { animation-delay: 0.05s; }
.block:nth-of-type(1) { animation-delay: 0.4s; }
.block:nth-of-type(2) { animation-delay: 0.5s; }
.block:nth-of-type(3) { animation-delay: 0.6s; }
.block:nth-of-type(4) { animation-delay: 0.7s; }
.block-horizon { animation-delay: 0.8s; }
.doc-foot { animation-delay: 0.9s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   Selection
   ============================================================ */
::selection {
  background: var(--ink);
  color: var(--paper-1);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 860px) {
  .doc-head {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
  }
  .doc-head-r { justify-content: flex-start; }
  .doc-head-c { order: 2; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-aside { padding-top: 0; }
  .stamp { margin-bottom: 24px; }

  .rail { display: none; }
  .cross { display: none; }

  .doc-foot {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }
  .sig-right { text-align: left; }

  .dawn-mark { top: 58%; }
}

@media (max-width: 600px) {
  .sheet { padding: 36px 18px 56px; }
  .bracket { width: 20px; height: 20px; }
  .bracket-tl, .bracket-tr { top: 10px; }
  .bracket-bl, .bracket-br { bottom: 10px; }
  .bracket-tl, .bracket-bl { left: 10px; }
  .bracket-tr, .bracket-br { right: 10px; }
  .bracket::before { width: 1.2px; height: 16px; }
  .bracket::after  { width: 16px; height: 1.2px; }

  .hero-mast { gap: 12px; margin-bottom: 36px; }
  .hero-logo { height: 40px; }
  .hero-logo-label { display: none; }

  .stamp-l2 { font-size: 28px; }
  .stamp-frame { padding: 12px 18px 14px; }

  .link a {
    grid-template-columns: 32px 1fr 24px;
    gap: 12px;
    padding: 18px 0;
  }
  .link-title { font-size: 21px; }

  .horizon-coords {
    flex-wrap: wrap;
    font-size: 11px !important;
  }

  .dawn { height: clamp(380px, 50vh, 480px); }
  .dawn-mark-num { font-size: clamp(96px, 30vw, 180px); }
}
