/* ==========================================================================
   H.A tattoo (demo): main.css
   Design plan: ../design.md ("קיר הפלאש").
   - Deep ink-blue wall (not black), light flash sheets with bold outlines and
     flat saturated pigments. Marigold is the only UI accent.
   - Type: Suez One (display), IBM Plex Sans Hebrew (text).
   - One GSAP moment: the pinned sideways flash wall (js/motion.js).

   CONTRAST (WCAG AA, checked): paper/ink 14.3, mist/ink 7.9, marigold/ink 8.95,
   ink/marigold 8.95, ink/marigold-deep 7.05, paper/ink-2 12.2, mist/ink-2 6.8,
   ink/tracing 13.7, slate/tracing 7.3, slate/paper 7.6, error-dark/ink 7.1,
   error-light/tracing 6.3.
   ========================================================================== */

:root {
  --ink: #14203A;
  --ink-2: #1C2C4D;
  --ink-line: #33466D;
  --outline: #0E1628;
  --paper: #EEF1F6;
  --paper-soft: #D5DCE8;
  --mist: #A9B6CC;
  --marigold: #F4B63F;
  --marigold-deep: #E09F22;
  --tracing: #E6EDF5;
  --slate: #3E4C66;
  --error-dark: #FF8A7A;
  --error-light: #9E2A20;
  --focus: var(--marigold);

  --font-display: "Suez One", "David", "Times New Roman", serif;
  --font-text: "IBM Plex Sans Hebrew", "Segoe UI", "Arial", sans-serif;

  --step--1: clamp(0.875rem, 0.85rem + 0.1vw, 0.9375rem);
  --step-0: clamp(1.0625rem, 1rem + 0.25vw, 1.1875rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.4vw, 1.45rem);
  --step-2: clamp(1.5rem, 1.3rem + 0.9vw, 2.1rem);
  --step-3: clamp(2.3rem, 1.6rem + 3vw, 4.25rem);
  --step-4: clamp(2.75rem, 1.2rem + 5.2vw, 6.5rem);

  --gutter: clamp(1rem, 0.5rem + 3vw, 3rem);
  --header-h: 4rem;
  --radius-pill: 999px;
  --radius-field: 4px;
}

/* ---------- Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-text);
  font-size: var(--step-0);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

img,
svg { display: block; max-width: 100%; }

p { margin: 0 0 1em; }

a {
  color: var(--marigold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}
a:hover { text-decoration-thickness: 2px; }

h1, h2, h3 { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
[tabindex="-1"]:focus { outline: none; }

[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

.container {
  width: min(100% - 2 * var(--gutter), 80rem);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -10rem;
  inset-inline-start: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--marigold);
  color: var(--ink);
  border-radius: var(--radius-field);
  text-decoration: none;
  font-weight: 700;
  --focus: var(--paper);
}
.skip-link:focus { top: 1rem; }

/* ---------- Demo banner (top + footer) ---------- */
.demo-banner {
  margin: 0;
  padding: 0.55rem var(--gutter);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--step--1);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.7rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font: 500 var(--step-0) / 1.2 var(--font-text);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--primary { background: var(--marigold); color: var(--ink); }
.btn--primary:hover { background: var(--marigold-deep); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--paper); border-color: currentColor; }
.btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--small { min-height: 2.5rem; padding: 0.45rem 1.1rem; font-size: var(--step--1); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-line);
}

.site-header__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  min-height: var(--header-h);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--paper);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav { margin-inline-start: auto; }

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__list a:not(.btn) {
  color: var(--paper);
  text-decoration: none;
  padding-block: 0.5rem;
}
.site-nav__list a:not(.btn):hover { text-decoration: underline; }

.nav-toggle,
.motion-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.4rem 0.85rem;
  border: 1.5px solid var(--paper);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--paper);
  font: 500 var(--step--1) / 1.2 var(--font-text);
  cursor: pointer;
}
.nav-toggle__icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.motion-toggle__icon { width: 1rem; height: 1rem; fill: currentColor; }

.js .motion-toggle { display: inline-flex; }
.motion-toggle[aria-pressed="true"] { background: var(--paper); color: var(--ink); }
.motion-toggle[aria-disabled="true"] { cursor: not-allowed; }

@media (max-width: 959.98px) {
  .js .nav-toggle { display: inline-flex; }
  .js .site-nav__list {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
    background: var(--ink);
    border-bottom: 1px solid var(--ink-line);
  }
  .js .site-nav__list.is-open { display: flex; }
  .js .site-nav__list a:not(.btn) {
    display: block;
    padding-block: 0.85rem;
    border-bottom: 1px solid var(--ink-line);
    font-size: var(--step-1);
  }
  .js .site-nav__cta { padding-top: 1rem; }
  .js .site-nav__cta .btn { width: 100%; min-height: 3rem; font-size: var(--step-0); }
}

@media (max-width: 479.98px) {
  .wordmark { font-size: 1.3rem; letter-spacing: 0.02em; }
  .nav-toggle span,
  .motion-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .motion-toggle { padding-inline: 0.7rem; }
}

/* ---------- Flash sheets (paper + tape) ---------- */
.sheet {
  position: relative;
  margin: 0;
  padding: clamp(0.9rem, 2.5vw, 1.6rem);
  background: var(--paper);
  color: var(--slate);
  border-radius: 2px;
}
.sheet::before,
.sheet::after {
  content: "";
  position: absolute;
  top: -0.7rem;
  width: 4.75rem;
  height: 1.5rem;
  background: rgba(238, 241, 246, 0.42);
  border: 1px solid rgba(238, 241, 246, 0.35);
}
.sheet::before { inset-inline-start: 1.1rem; transform: rotate(-7deg); }
.sheet::after { inset-inline-end: 1.1rem; transform: rotate(6deg); }

.sheet .art { width: 100%; height: auto; margin-inline: auto; }
.art { direction: ltr; }
.art__ribbon { font-family: var(--font-display); letter-spacing: 2px; }

.sheet__note {
  margin-top: 0.4rem;
  font-size: var(--step--1);
  line-height: 1.4;
  color: var(--slate);
}

/* ---------- Placeholders ("כאן יופיע...") ---------- */
.todo,
.flash__todo,
.steps__todo,
.rating__todo {
  padding: 0.5rem 0.8rem;
  border: 1.5px dashed var(--mist);
  border-radius: var(--radius-field);
  color: var(--mist);
  font-size: var(--step--1);
  line-height: 1.5;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  overflow: clip;
  padding-block: clamp(2.5rem, 6vw, 5.5rem) clamp(3rem, 6vw, 5rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.hero__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-4);
  line-height: 1.04;
  color: var(--paper);
}
.hero__line { display: block; }
.hero__line + .hero__line { padding-inline-start: 0.6em; }

.hero__lead {
  max-width: 42ch;
  margin-bottom: 1.75rem;
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--paper-soft);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.25rem; }

.facts {
  display: grid;
  gap: 1rem 2rem;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink-line);
}
.facts dt { font-size: var(--step--1); color: var(--mist); }
.facts dd { margin: 0; font-weight: 500; }

.sheet--hero {
  width: min(100%, 28rem);
  justify-self: center;
  transform: rotate(-2deg);
}

@media (min-width: 640px) {
  .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .hero__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
  .sheet--hero { width: min(100%, 30rem); }
}

/* ---------- Generic sections ---------- */
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }

.section__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-3);
  line-height: 1.08;
}

/* ---------- Flash wall: static (default, no JS, reduced motion, paused) ---------- */
.wall {
  background: var(--ink-2);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.wall__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.wall__intro { max-width: 58ch; margin: 0; color: var(--paper-soft); }

.wall__progress { display: none; }

.flash {
  display: grid;
  gap: clamp(3rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
  width: min(100% - 2 * var(--gutter), 80rem);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.flash__item { min-width: 0; }

.flash__art { max-width: 26rem; }
.flash__item--a .flash__art { transform: rotate(-1.5deg); }
.flash__item--b .flash__art { transform: rotate(1.2deg); }
.flash__item--c .flash__art { transform: rotate(-0.6deg); }
.flash__item--d .flash__art { transform: rotate(1.6deg); }
.flash__item--e .flash__art { transform: rotate(-1.1deg); }

.flash__text { margin-top: 1.5rem; max-width: 34ch; }
.flash__name {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-2);
  line-height: 1.15;
}
.flash__text p { color: var(--paper-soft); }
.flash__text .flash__todo { color: var(--mist); margin: 0; }

@media (min-width: 640px) {
  .flash { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .flash { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ---------- Flash wall: staged (pinned + sideways, class added by js/motion.js) ---------- */
.wall.is-staged { padding-bottom: 0; }
.wall.is-staged .wall__head { margin-bottom: 0; }

.wall.is-staged .wall__stage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1rem, 3vh, 2rem);
  height: calc(100vh - var(--hh, 4rem));
  height: calc(100svh - var(--hh, 4rem));
  overflow: hidden;
  overflow: clip;
}

.wall.is-staged .wall__progress {
  display: block;
  position: relative;
  width: min(14rem, 40vw);
  height: 3px;
  margin-inline: max(var(--gutter), calc((100% - 80rem) / 2));
  background: var(--ink-line);
}
.wall__progress > span {
  position: absolute;
  inset: 0;
  background: var(--marigold);
  transform: scaleX(0);
  transform-origin: right center;
}

.wall.is-staged .flash {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  width: max-content;
  margin: 0;
  padding-block: 1rem;
  padding-inline: max(var(--gutter), calc((100vw - 80rem) / 2));
  will-change: transform;
}

.wall.is-staged .flash__item { flex: none; width: min(78vw, 22rem); }

.wall.is-staged .flash__art { max-width: none; }
.wall.is-staged .flash__art .art {
  width: 100%;
  height: auto;
  max-height: calc(100vh - var(--hh, 4rem) - 17rem);
  max-height: calc(100svh - var(--hh, 4rem) - 17rem);
  filter: grayscale(var(--gray, 0));
}
.wall.is-staged .flash__text { margin-top: 1.1rem; }
.wall.is-staged .flash__text p { margin-bottom: 0.6rem; }

@media (min-width: 900px) {
  .wall.is-staged .flash__item {
    display: grid;
    grid-template-columns: minmax(0, 12fr) minmax(0, 8fr);
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    width: clamp(38rem, 60vw, 56rem);
  }
  .wall.is-staged .flash__art .art {
    max-height: calc(100vh - var(--hh, 4rem) - 7rem);
    max-height: calc(100svh - var(--hh, 4rem) - 7rem);
  }
  .wall.is-staged .flash__text { margin-top: 0; }
}

/* ---------- First tattoo (the one light band) ---------- */
.first {
  --focus: var(--ink);
  background: var(--tracing);
  color: var(--ink);
}
.first a { color: var(--ink); font-weight: 500; }
.first .rating__todo,
.first .steps__todo { color: var(--slate); border-color: var(--slate); }

.first__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
.first__intro p { max-width: 44ch; }

.rating {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--ink);
}
.rating__line { margin-bottom: 0.75rem; font-size: var(--step-1); }
.rating__todo { margin: 0; max-width: 44ch; }

.steps {
  display: grid;
  gap: 2rem 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.steps__item {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  column-gap: 1rem;
  align-items: start;
}
.steps__item::before {
  content: counter(step);
  content: counter(step) / "";
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--outline);
  border-radius: 50%;
  background: var(--marigold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}
.steps__item h3 {
  margin: 0.35rem 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-1);
  line-height: 1.3;
}
.steps__item p { margin: 0; color: var(--slate); }

@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .first__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
    gap: clamp(3rem, 6vw, 6rem);
  }
}

/* ---------- Visit ---------- */
.visit__grid { display: grid; gap: 2.5rem; }
.visit__info {
  display: grid;
  gap: 1.75rem 2.5rem;
  align-content: start;
}
.visit__block h3 {
  margin: 0 0 0.35rem;
  font-size: var(--step-0);
  font-weight: 700;
  line-height: 1.3;
  color: var(--paper);
}
.visit__block p { margin: 0; color: var(--paper-soft); }
.visit__block .todo { color: var(--mist); }

.map {
  display: block;
  width: 100%;
  min-height: 22rem;
  height: 100%;
  border: 0;
  border-radius: var(--radius-field);
  background: var(--ink-2);
}

@media (min-width: 640px) {
  .visit__info { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .visit__grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(3rem, 5vw, 5rem); }
  .map { min-height: 28rem; }
}

/* ---------- Idea form ---------- */
.idea { background: var(--ink-2); }
.idea__grid { display: grid; gap: 2.5rem; }
.idea__intro p { max-width: 40ch; color: var(--paper-soft); }
.idea__privacy { font-size: var(--step--1); }

.idea-form { display: grid; gap: 1.25rem 1.5rem; align-content: start; }

.field { min-width: 0; }
.field label,
.choice legend { display: block; margin-bottom: 0.35rem; font-weight: 500; }
.req,
.opt { font-size: var(--step--1); font-weight: 400; color: var(--mist); }

.idea-form input[type="text"],
.idea-form input[type="tel"],
.idea-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.65rem 0.9rem;
  border: 2px solid var(--paper);
  border-radius: var(--radius-field);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: var(--step-0);
  line-height: 1.4;
}
.idea-form input[dir="ltr"] { text-align: right; }
.idea-form textarea { min-height: 7.5rem; resize: vertical; }
.idea-form input:not([type="radio"])[aria-invalid="true"],
.idea-form textarea[aria-invalid="true"] { border-color: var(--error-dark); box-shadow: 0 0 0 2px var(--error-dark); }

.field__hint { margin: 0.35rem 0 0; font-size: var(--step--1); color: var(--mist); }
.field__error { margin: 0.4rem 0 0; font-size: var(--step--1); font-weight: 500; color: var(--error-dark); }

.choice { margin: 0; padding: 0; border: 0; }
.choice__row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.choice__option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  margin: 0;
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--ink-line);
  border-radius: var(--radius-pill);
  font-weight: 400;
  cursor: pointer;
}
.choice__option:has(input:checked) { border-color: var(--marigold); }
.choice__option input { width: 1.15rem; height: 1.15rem; margin: 0; accent-color: var(--marigold); }
.choice.is-invalid .choice__option { border-color: var(--error-dark); }

.field--check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
}
.field--check input {
  width: 1.375rem;
  height: 1.375rem;
  margin: 0.25rem 0 0;
  accent-color: var(--marigold);
}
.field--check label { margin: 0; font-weight: 400; }
.field--check .field__error { grid-column: 1 / -1; }

.form-status {
  padding: 1rem 1.25rem;
  border-inline-start: 6px solid var(--marigold);
  border-radius: var(--radius-field);
  background: var(--paper);
  color: var(--ink);
}
.form-status[data-state="error"] { border-inline-start-color: var(--error-light); }
.form-status p { margin: 0; }

.form-noscript { margin: 0; font-weight: 500; }

@media (min-width: 640px) {
  .idea-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field--wide { grid-column: 1 / -1; }
}
@media (min-width: 960px) {
  .idea__grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
    gap: clamp(3rem, 6vw, 6rem);
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: 3.5rem 2.5rem;
  border-top: 1px solid var(--ink-line);
}
.site-footer a { color: var(--paper); }
.site-footer__grid { display: grid; gap: 2rem; }
.wordmark--footer { margin: 0 0 0.75rem; font-size: 2.4rem; }
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__demo {
  grid-column: 1 / -1;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink-line);
  font-size: var(--step--1);
  color: var(--mist);
}
.site-footer__demo p { margin: 0.75rem 0 0; }
.demo-banner--footer { border-radius: var(--radius-field); }
.site-footer__demo .demo-banner--footer { margin: 0; color: var(--ink); }

@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: minmax(0, 1fr) auto; }
}

/* ---------- Legal pages (privacy / accessibility) ---------- */
.page-header .site-header__bar { justify-content: space-between; }
.page-header a:not(.wordmark) { color: var(--paper); }
.legal { padding-block: clamp(3rem, 6vw, 5rem) clamp(4rem, 8vw, 6rem); }
.legal__body { max-width: 68ch; }
.legal h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-3);
  line-height: 1.08;
}
.legal h2 { margin: 2.5rem 0 0.75rem; font-size: var(--step-2); line-height: 1.25; font-family: var(--font-display); font-weight: 400; }
.legal h3 { margin: 1.75rem 0 0.5rem; font-size: var(--step-1); line-height: 1.3; }
.legal ul { padding-inline-start: 1.25rem; }
.legal li { margin-bottom: 0.4rem; }
.legal p,
.legal li { color: var(--paper-soft); }
.legal strong { color: var(--paper); }
.legal .updated { color: var(--mist); }
.ph {
  padding: 0 0.25em;
  border-radius: 3px;
  background: var(--marigold);
  color: var(--ink);
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.motion-off *,
.motion-off *::before,
.motion-off *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

/* ---------- Windows high contrast / forced colors ---------- */
@media (forced-colors: active) {
  .btn,
  .motion-toggle,
  .nav-toggle,
  .choice__option { border: 1.5px solid ButtonText; }
  .motion-toggle[aria-pressed="true"] { outline: 2px solid Highlight; }
  .sheet { border: 1px solid CanvasText; }
}
