/* ============================================================
   RMNP FAMILY DAY — design system
   Dark, cinematic, one warm accent. Mobile-first: every rule is
   written for a phone, then min-width media queries scale it up.
   ============================================================ */

/* ---- The palette & scale, defined once. ----
   These are "CSS custom properties" (variables): change --accent
   here and every heading, button, and marker on the site follows. */
:root {
  --bg: #08090D;            /* near-black night sky */
  --bg-2: #0D1017;          /* slightly lifted panel background */
  --card: #12151E;          /* card surfaces */
  --ink: #F4F2ED;           /* warm off-white text */
  --dim: #9BA0AB;           /* secondary text */
  --accent: #E8A45E;        /* alpine-dusk gold */
  --accent-bright: #F2B876; /* hover/glow variant */
  --line: rgba(244, 242, 237, 0.09); /* hairline borders */
  --radius: 18px;
  --pad: clamp(1.25rem, 5vw, 3rem);  /* side padding that breathes with screen size */
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }

a { color: var(--accent); text-decoration-color: rgba(232, 164, 94, 0.4); text-underline-offset: 3px; }
a:hover { color: var(--accent-bright); }

strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

h1, h2, h3 { line-height: 1.12; margin: 0 0 0.6em; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;  /* fallback for older browsers that don't know svh */
  min-height: 92svh; /* svh = "small viewport height": stable on phones when the URL bar hides */
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: var(--pad);
  overflow: hidden;
  /* The "alpine dusk": layered radial glows instead of a stock photo. */
  background:
    radial-gradient(120% 70% at 50% 108%, rgba(232, 164, 94, 0.22) 0%, rgba(232, 164, 94, 0.05) 42%, transparent 70%),
    radial-gradient(90% 55% at 78% 112%, rgba(210, 110, 60, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, #07080C 0%, #0A0C12 70%, #0D0F16 100%);
}

/* A faint mountain ridge drawn with pure CSS — two clipped dark shapes.
   --scroll-y is set by main.js as you scroll; each ridge drifts at its own
   speed (parallax), which is what gives the hero its sense of depth. */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -4vh 0;
  height: 38vh;
  pointer-events: none;
  will-change: transform;
}
.hero::before {
  background: #05060A;
  clip-path: polygon(0 78%, 12% 52%, 26% 70%, 42% 34%, 55% 62%, 68% 42%, 82% 66%, 100% 48%, 100% 100%, 0 100%);
  opacity: 0.85;
  transform: translateY(calc(var(--scroll-y, 0) * -0.06px)); /* far ridge: slow */
}
.hero::after {
  background: #090B10;
  clip-path: polygon(0 88%, 18% 66%, 33% 80%, 52% 56%, 70% 76%, 86% 62%, 100% 74%, 100% 100%, 0 100%);
  transform: translateY(calc(var(--scroll-y, 0) * -0.14px)); /* near ridge: faster */
}

.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; width: 100%; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.2rem;
}

h1 {
  /* clamp(min, fluid, max): type that scales with the screen, within taste. */
  font-size: clamp(2.7rem, 10vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lede {
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  color: var(--dim);
  max-width: 56ch;
  margin: 0 0 2rem;
}
.lede strong { color: var(--ink); }

.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}
.hero-facts li {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  background: rgba(255, 255, 255, 0.02);
}

/* The little animated line inviting a scroll. */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--accent), transparent);
  animation: cue 2.4s ease-in-out infinite;
  z-index: 1;
}
@keyframes cue {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   SECTIONS — shared rhythm
   ============================================================ */
.section { padding: clamp(4rem, 10vw, 7.5rem) var(--pad); }
.section-inner { max-width: 880px; margin: 0 auto; }

.kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.9rem;
}

h2 {
  font-size: clamp(1.9rem, 5.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 { font-size: 1.08rem; font-weight: 600; }

.section-lede { color: var(--dim); max-width: 58ch; margin: 0 0 2.5rem; }

/* ============================================================
   CARDS & BOXES
   ============================================================ */
.card-grid { display: grid; gap: 1rem; margin: 2rem 0 0; }
@media (min-width: 720px) {
  .card-grid.two { grid-template-columns: 1fr 1fr; }
  .card-grid.three { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  /* transform-style + the JS pointer handler give desktop cards a subtle
     3D tilt toward the cursor; phones never see it. */
  transform-style: preserve-3d;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card.is-tilting { transition: transform 0.06s linear; border-color: rgba(232, 164, 94, 0.35); }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card ul { padding-left: 1.1rem; margin: 0; color: var(--dim); }
.card li { margin-bottom: 0.55rem; }
.card li:last-child { margin-bottom: 0; }
.card h3 { color: var(--accent); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.card p { color: var(--dim); margin: 0 0 0.8em; }

/* Warning box — the loudest element on the page, on purpose. */
.warning-box {
  border: 1px solid rgba(232, 164, 94, 0.5);
  border-left: 4px solid var(--accent);
  background: linear-gradient(135deg, rgba(232, 164, 94, 0.1), rgba(232, 164, 94, 0.03));
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  margin: 2rem 0;
}
.warning-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-bright);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.warning-box p { margin: 0; color: var(--ink); }
.warning-box p + p { margin-top: 0.6rem; }

/* Callout — the Aug 1 alarm. */
.callout-box {
  border: 1px dashed rgba(232, 164, 94, 0.45);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0 0;
  background: rgba(232, 164, 94, 0.04);
}
.callout-title { font-weight: 800; color: var(--ink); margin: 0 0 0.4rem; }
.callout-box p { color: var(--dim); margin: 0; }
.callout-box strong { color: var(--accent-bright); }

/* Grandpa's pass box. */
.pass-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  margin: 1rem 0 0;
}
.pass-box h3 { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.pass-box p { color: var(--dim); margin: 0 0 0.8em; }
.pass-box p:last-child { margin-bottom: 0; }

/* Day-vote cards. */
.day-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); margin: 0 0 0.5rem; }
.day-card h3 { color: var(--ink); font-size: 1.3rem; font-weight: 800; text-transform: none; letter-spacing: -0.01em; }

.tip-strip {
  margin: 1.6rem 0 0;
  padding: 1.1rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 164, 94, 0.35);
  color: var(--accent-bright);
  font-weight: 500;
  text-align: center;
  background: rgba(232, 164, 94, 0.05);
}
@media (max-width: 719px) { .tip-strip { border-radius: var(--radius); } }

.option-card { margin-top: 1rem; border-style: dashed; }

/* ============================================================
   TIMELINE — a vertical rail with gold time markers.
   ============================================================ */
.timeline { list-style: none; margin: 2.5rem 0 0; padding: 0; position: relative; }

/* The rail itself. */
.timeline::before {
  content: "";
  position: absolute;
  left: 4.35rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(var(--line) 0%, rgba(232, 164, 94, 0.35) 50%, var(--line) 100%);
}

.tl-item {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1.9rem;
  position: relative;
  padding-bottom: 2.4rem;
}
.tl-item:last-child { padding-bottom: 0; }

/* The gold dot on the rail. */
.tl-item::before {
  content: "";
  position: absolute;
  left: 4.35rem;
  top: 0.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-4px);
  box-shadow: 0 0 12px rgba(232, 164, 94, 0.6);
}

.tl-time {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--accent);
  text-align: right;
  letter-spacing: 0.02em;
  padding-top: 0.15rem;
  font-variant-numeric: tabular-nums;
}

.tl-body h3 { font-size: 1.12rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.tl-body p { color: var(--dim); margin: 0 0 0.5rem; }
.tl-meta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 164, 94, 0.75);
}

/* ============================================================
   MAP
   ============================================================ */
.map-frame {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
#map {
  height: clamp(380px, 60vh, 560px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-2); /* visible while tiles load */
}

/* Soften the bright OSM tiles so the map sits inside the dark design.
   The filter targets only the tile images — markers and popups stay crisp. */
.leaflet-tile-pane { filter: grayscale(0.55) brightness(0.92) contrast(1.02) sepia(0.12); }

/* Dark, on-brand popups. */
.leaflet-popup-content-wrapper {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.leaflet-popup-content { font-family: 'Inter', system-ui, sans-serif; font-size: 0.86rem; line-height: 1.5; margin: 0.9rem 1rem; }
.leaflet-popup-content .popup-title { font-weight: 800; color: var(--accent); display: block; margin-bottom: 0.2rem; }
.leaflet-popup-tip { background: var(--card); }
.leaflet-container a.leaflet-popup-close-button { color: var(--dim); }

.map-footnote { font-size: 0.85rem; color: var(--dim); margin-top: 1.2rem; }

/* Numbered map pins: gold rings with the stop number inside,
   drawn with CSS instead of image files. */
.stop-pin {
  background: transparent;
  border: 0;
}
.stop-pin span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #12151E;
  border: 2px solid var(--accent);
  color: var(--accent-bright);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 0 14px rgba(232, 164, 94, 0.45);
}
/* The two hero stops get a slow breathing pulse. */
.stop-pin.is-hero span { animation: pin-pulse 2.6s ease-in-out infinite; }
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(232, 164, 94, 0.35); }
  50% { box-shadow: 0 0 22px rgba(232, 164, 94, 0.75); }
}
@media (prefers-reduced-motion: reduce) {
  .stop-pin.is-hero span { animation: none; }
}

/* Always-on pin labels (desktop only — added by main.js). */
.leaflet-tooltip.stop-label {
  background: rgba(18, 21, 30, 0.92);
  color: var(--ink);
  border: 1px solid rgba(232, 164, 94, 0.4);
  border-radius: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  box-shadow: none;
}
.leaflet-tooltip.stop-label::before { display: none; } /* no default arrow */

/* ============================================================
   SCENE ILLUSTRATIONS — inline SVG art between sections
   ============================================================ */
.scene {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.scene svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.scene-inline { padding: 0; margin: 2.5rem 0 0.5rem; } /* scene living inside a section */
.scene-caption {
  font-size: 0.8rem;
  color: var(--dim);
  font-style: italic;
  text-align: center;
  margin-top: 0.8rem;
}

/* ============================================================
   VIDEO CARDS — "scout it first"
   ============================================================ */
.video-grid { display: grid; gap: 0.8rem; margin-top: 2rem; }
@media (min-width: 720px) { .video-grid { grid-template-columns: 1fr 1fr; } }

.video-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.video-card:hover { border-color: rgba(232, 164, 94, 0.5); transform: translateY(-2px); }

/* The play button: a pure-CSS circle + triangle, no icon files. */
.video-play {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: rgba(232, 164, 94, 0.08);
  position: relative;
}
.video-play::after {
  content: "";
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent var(--accent);
}
/* Search-link variant: a little magnifier instead of a play triangle. */
.video-search::after {
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  left: 45%;
  top: 45%;
}
.video-search::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: var(--accent);
  transform: rotate(45deg);
  right: 8px;
  bottom: 10px;
}

.video-body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.video-title { font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.video-meta { font-size: 0.82rem; color: var(--dim); }

/* ============================================================
   QUIET SECTION (health & safety)
   ============================================================ */
.quiet-section { background: var(--bg-2); }
.quiet-card { background: rgba(255, 255, 255, 0.02); }

/* ============================================================
   FAQ — styled native <details>
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0;
}
.faq-item:first-of-type { border-top: 1px solid var(--line); margin-top: 2rem; }

.faq-item summary {
  cursor: pointer;
  list-style: none; /* removes the default triangle so we can draw our own */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 0;
  font-weight: 600;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }

/* Our own open/close indicator: a plus that rotates into an x. */
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer { padding: 0 0 1.2rem; color: var(--dim); max-width: 62ch; }
.faq-answer p { margin: 0; }

/* ============================================================
   CALENDAR DOWNLOADS
   ============================================================ */
.day-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: var(--card);
  margin-bottom: 1.6rem;
}
.toggle-btn {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dim);
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.toggle-btn.is-active { background: var(--accent); color: #14100A; }

.downloads { display: grid; gap: 0.7rem; max-width: 640px; }
.downloads:not(.is-active) { display: none; }
.downloads[hidden] { display: none; } /* belt-and-suspenders with the hidden attribute */

/* Day labels are invisible normally (the toggle names the day);
   a <noscript> rule reveals them when both lists show at once. */
.dl-day-label {
  display: none;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1rem 0 0.2rem;
}

/* One row per event: name on the left, two actions on the right. */
.dl-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
}
.dl-name { font-weight: 500; font-size: 0.93rem; color: var(--ink); }
.dl-tag {
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.4rem;
  white-space: nowrap;
}
.dl-actions { display: flex; gap: 0.45rem; flex-shrink: 0; }

.dl-btn {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(232, 164, 94, 0.4);
  border-radius: 999px;
  color: var(--accent-bright);
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.dl-btn:hover { background: rgba(232, 164, 94, 0.12); color: var(--accent-bright); border-color: var(--accent); }
.dl-btn.dl-all {
  display: block;
  text-align: center;
  background: var(--accent);
  border-color: var(--accent);
  color: #14100A;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 1rem 1.3rem;
  border-radius: 14px;
}
.dl-btn.dl-all:hover { background: var(--accent-bright); }

.dl-note { font-size: 0.82rem; color: var(--dim); max-width: 60ch; margin-top: 1.4rem; }

@media (max-width: 520px) {
  .dl-row { flex-direction: column; align-items: flex-start; }
  .dl-actions { align-self: stretch; }
  .dl-actions .dl-btn { flex: 1; text-align: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem var(--pad) 4rem;
  background: var(--bg-2);
}
.footer-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); }
.footer p { font-size: 0.85rem; color: var(--dim); max-width: 72ch; }
.footer a { color: var(--accent); }
.footer-made { margin-top: 1.4rem; color: var(--ink); font-style: italic; }

/* ============================================================
   SCROLL REVEAL
   The .js class is added by main.js — so if JavaScript ever fails,
   nothing is hidden and the page still reads perfectly.
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Respect visitors (and relatives) who turn animations off. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue { animation: none; }
}

/* ============================================================
   PRINT — one clean, light page for the glovebox.
   main.js pops all FAQ items open right before printing.
   ============================================================ */
@media print {
  :root { --ink: #111; --dim: #444; --accent: #8a5a1e; }

  body { background: #fff; color: #111; font-size: 10.5pt; line-height: 1.45; }

  /* CRITICAL: the scroll-reveal system hides content until it's seen on
     screen — print never "scrolls," so without this reset an unscrolled
     page would print mostly blank. */
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }

  /* Screen-only chrome disappears on paper. The calendar section goes
     entirely — download buttons are meaningless on paper — and so do
     the illustrations and video links. */
  .scroll-cue, .hero::before, .hero::after,
  #map-section, #calendar, #scout, .scene,
  .option-card { display: none !important; }

  /* The dark "quiet notes" band must go light on paper too. */
  .quiet-section { background: none; }

  .hero { min-height: auto; background: none; padding: 0 0 1rem; }
  h1 { font-size: 22pt; color: #111; }
  .lede, .section-lede, .card p, .card ul, .tl-body p, .faq-answer, .footer p { color: #333; }
  .hero-facts li { border-color: #ccc; color: #333; background: none; }

  .section { padding: 0.9rem 0; }
  .card, .pass-box, .warning-box, .callout-box, .quiet-card {
    background: none;
    border: 1px solid #bbb;
    border-radius: 6px;
    padding: 0.7rem 0.9rem;
    break-inside: avoid; /* don't slice a card across two pages */
  }
  .warning-box { border: 2px solid #8a5a1e; }
  .warning-title, .callout-title { color: #8a5a1e; }
  .card h3, .pass-box h3, .kicker, .tl-time, .tl-meta { color: #8a5a1e; }
  .card-grid { gap: 0.5rem; }
  h2 { font-size: 14pt; color: #111; }
  .tl-item { padding-bottom: 0.8rem; break-inside: avoid; }
  .timeline::before, .tl-item::before { display: none; } /* rail & dots: ink-wasting on paper */
  .tl-body h3 { color: #111; }
  .day-card h3 { color: #111; }
  .tip-strip { border: 1px solid #8a5a1e; color: #8a5a1e; background: none; }

  .faq-item summary::after { display: none; }
  .faq-answer { color: #333; }

  a { color: #111; text-decoration: none; }
  .footer { background: none; border-top: 1px solid #bbb; padding: 1rem 0 0; }

  @page { margin: 1.4cm; }
}
