/* ─── DESIGN TOKENS ─── */
:root {
  --paper-light:  #FDFDFC;
  --paper:       #FAF9F6;
  --paper-dark:  #F0ECE6;
  --ink:         #1a1814;
  --ink-faded:   #8a847c;
  --accent:      #C0392B;
  --accent-hov:  #d4524a;
  --accent-soft: #f0e5e3;

  --rule:        rgba(26,24,20,0.1);
  --scrollbar:   rgba(26,24,20,0.2);
  --serif:       'Tiempos Headline', Georgia, serif;
  --sans:        'Geist', system-ui, sans-serif;
  --mono:        'Geist Mono', ui-monospace, monospace;

  /* Type scale (Tailwind) */
  --text-xs:    0.75rem;   /* 12px */
  --text-sm:    1rem;      /* 16px */
  --text-base:  1.125rem;  /* 18px */
  --text-lg:    1.125rem;  /* 18px */
  --text-xl:    1.25rem;   /* 20px */
  --text-2xl:   1.5rem;    /* 24px */
  --text-3xl:   1.875rem;  /* 30px */
  --text-4xl:   2.25rem;   /* 36px */
  --text-5xl:   3rem;      /* 48px */
  --text-6xl:   3.75rem;   /* 60px */
  --text-7xl:   4.5rem;    /* 72px */
  --text-8xl:   6rem;      /* 96px */
  --text-9xl:   8rem;      /* 128px */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: var(--accent-soft); color: var(--ink); }
strong { font-weight: 600; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
html {
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar) transparent;
}
html::-webkit-scrollbar { width: 5px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb { background: var(--scrollbar); border-radius: 3px; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text-base);
  font-weight: 400;
  min-height: 100dvh;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar) transparent;
}
body::-webkit-scrollbar { width: 5px; }
body::-webkit-scrollbar-track { background: transparent; }
body::-webkit-scrollbar-thumb { background: var(--scrollbar); border-radius: 3px; }

.material-symbols-sharp {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  user-select: none;
  pointer-events: none;
}
.material-symbols-sharp.filled {
  font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ─── SPLIT LAYOUT ─── */
/* Mobile: stacked. Tablet+: side-by-side, left panel fixed */

#shell {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

@media (min-width: 810px) {
  #shell {
    flex-direction: row;
    height: 100dvh;
    overflow: hidden;
  }
}

/* ─── LEFT PANEL (media) ─── */
#leftPanel {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, var(--paper-dark) 0%, #f7f4ef 40%, var(--paper-dark) 80%);
  background-size: 800px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  overflow: hidden;
  flex-shrink: 0;
  /* Mobile: square */
  aspect-ratio: 1 / 1;
}

@media (min-width: 810px) {
  #leftPanel {
    width: 50%;
    aspect-ratio: unset;
    height: 100dvh;
    position: fixed;
    top: 0; left: 0; bottom: 0;
  }
}

/* Spacer so right panel sits beside the fixed left panel on tablet+ */
#leftSpacer {
  display: none;
}
@media (min-width: 810px) {
  #leftSpacer {
    display: block;
    width: 50%;
    flex-shrink: 0;
  }
}

/* Media fills left panel */
#coverImg, #coverVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

#coverVideo { display: none; }

/* Play/pause overlay — fades in on hover */
#videoOverlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.2s;
}
#videoOverlay > button {
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.3s;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
#leftPanel:hover #videoOverlay > button { opacity: 1; }
#leftPanel:hover #videoOverlay { background: rgba(0,0,0,0.15); }

/* Fullscreen btn — mobile only */
#fullscreenBtn {
  position: absolute;
  bottom: 1rem; right: 1rem;
  z-index: 20;
  opacity: 0;
  transition: opacity 0.3s;
}
#leftPanel:hover #fullscreenBtn { opacity: 1; }

@media (min-width: 810px) {
  #fullscreenBtn { display: none; }
}

/* ─── TOPBAR ─── */
#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  pointer-events: none;
}

@media (min-width: 810px) {
  #topbar { padding: 1.1rem 1.5rem; }
}

/* Topbar pill */
.topbar-pill {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: center;
  height: 36px;
  padding: 0 1.1rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text-base);
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s;
  white-space: nowrap;
}
.topbar-pill:hover { background: var(--paper-light); }

.heart-home .material-symbols-sharp { color: var(--accent); transition: color 0.18s; }
.heart-home:hover .material-symbols-sharp { color: var(--accent-hov); }

/* ─── RIGHT PANEL (detail) ─── */
#rightPanel {
  width: 100%;
  background: var(--paper);
}

@media (min-width: 810px) {
  #rightPanel {
    flex: 1;
    height: 100dvh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar) transparent;
  }
  #rightPanel::-webkit-scrollbar { width: 5px; }
  #rightPanel::-webkit-scrollbar-track { background: transparent; }
  #rightPanel::-webkit-scrollbar-thumb { background: var(--scrollbar); border-radius: 3px; }
}

/* ─── DETAIL PADDING ─── */
/* Matches Skillstore's detail-pane-padding */
.detail-pad {
  padding: 1.5rem 1rem 5rem;
}

@media (min-width: 810px) {
  .detail-pad {
    padding: 8rem 2.75rem 5rem;
  }
}

@media (min-width: 1200px) {
  .detail-pad {
    padding: 8rem 2.75rem 5rem;
  }
}

@media (min-width: 1536px) {
  .detail-pad {
    padding: 8rem 8.75rem 5rem;
  }
}

/* ─── PAGES ─── */
.page { display: none; }
.page.active { display: block; }

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.shimmer {
  background: linear-gradient(90deg, var(--paper-dark) 0%, #f7f4ef 40%, var(--paper-dark) 80%);
  background-size: 800px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

/* ─── TYPOGRAPHY ─── */
.page-title {
  font-family: var(--serif);
  font-size: var(--text-6xl);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.page-title em { font-style: italic; color: inherit; }

.section-label {
  font-family: var(--serif);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
}

/* ─── BIO ─── */
#bioText {
  font-size: var(--text-2xl);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

@media (max-width: 809px) {
  .page-title { font-size: var(--text-5xl); }
  #bioText { font-size: var(--text-xl); }
}


/* ─── CTAs ─── */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0;
}

.btn-full {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: var(--text-base);
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  gap: 0.4rem;
}

.btn-full.primary {
  background: var(--accent);
  color: var(--paper);
}
.btn-full.primary:hover { background: var(--accent-hov); }

.btn-full.secondary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-full.secondary:hover { background: var(--paper-light); }

/* ─── CONTENT LIST (stories) ─── */
.content-list { margin-top: 2.5rem; }

.list-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--rule);
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.15s;
  margin-bottom: 1rem;
}
.list-item:hover, .list-item:focus-visible { background: var(--paper-light); }

.list-thumb {
  width: 140px; min-height: 140px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--paper-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  position: relative;
}

.list-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Play overlay on thumb hover */
.list-thumb .play-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
  border-radius: 10px;
}
.list-item:hover .play-overlay { opacity: 1; }
.play-overlay span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  font-size: 16px;
}

.list-info { flex: 1; min-width: 0; }
.list-title { font-family: var(--serif); font-size: var(--text-2xl); font-weight: 400; color: var(--ink); line-height: 1.3; margin-bottom: 0.5rem; }
.list-meta { font-size: var(--text-sm); color: var(--ink); line-height: 1.5; margin-bottom: 0.75rem; }

.list-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

/* ─── STORY CARDS (home page) ─── */
.story-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s;
  min-height: 8rem;
}
.story-card:hover, .story-card:focus-visible { background: var(--paper-light); }
.story-card-title {
  font-family: var(--serif);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.story-card-tag {
  font-size: var(--text-sm);
  color: var(--ink);
  margin-top: 16px;
}

#homeStoryList,
#workList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.related-stories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 2rem;
}

@media (max-width: 809px) {
  .story-card { min-height: 12rem; }
}

/* 3xl — ultrawide: stories go horizontal */
@media (min-width: 2200px) {
  #homeStoryList { grid-template-columns: repeat(3, 1fr); }
  #workList { grid-template-columns: repeat(3, 1fr); }
  .related-stories { grid-template-columns: repeat(3, 1fr); }
  .story-card { min-height: 16rem; /* 256px — more room when cards are side by side */ }
}
.related-heading {
  font-family: var(--serif);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--ink);
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}


/* ─── STORY DETAIL ─── */
.story-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.story-meta {
  margin: 4rem 0 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 1rem;
  align-items: baseline;
}
.story-meta-row {
  display: contents;
}
.story-meta-label {
  font-family: var(--sans);
  font-size: var(--text-sm); letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 400; color: var(--ink);
}
.story-meta-val { font-size: var(--text-sm); color: var(--ink); }

/* Headline stats — stacked with horizontal rules */
.headline-stats {
  margin: 0;
}
.headline-stat {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.headline-stat-num {
  font-family: var(--serif); font-size: var(--text-2xl);
  font-weight: 500; color: var(--ink); line-height: 1.2;
  margin-bottom: 8px;
}
.headline-stat-desc {
  font-size: var(--text-base); color: var(--ink-faded); line-height: 1.4;
}


.body-h2 {
  font-family: var(--serif);
  font-size: var(--text-4xl);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 4rem 0 1rem;
  color: var(--ink);
}

.body-p {
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1rem;
}

.callout {
  background: var(--paper-dark);
  color: var(--ink);
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  margin: 3rem 0;
}
.callout p { font-family: var(--serif); font-style: italic; font-size: var(--text-base); line-height: 1.5; }

.body-list {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 1rem 1.5rem;
}
.body-list li { margin-bottom: 0.5rem; }
.callout strong { color: var(--ink); }

.outcome-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 3rem 0;
}
.outcome-cell {
  padding: 1rem 0;
  text-align: left;
}
.outcome-num {
  font-family: var(--sans);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.outcome-desc { font-size: var(--text-xs); color: var(--ink-faded); line-height: 1.4; }

.screenshot {
  background: linear-gradient(90deg, var(--paper-dark) 0%, #f7f4ef 40%, var(--paper-dark) 80%);
  background-size: 800px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border-radius: 14px;
  min-height: 180px;
  padding: 1.5rem;
  margin: 3rem 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
  overflow: hidden;
}
.screenshot span {
  font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-faded);
}
.screenshot img {
  max-width: 100%; max-height: 100%;
  height: auto; width: auto;
  display: block; border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.screenshot:has(img) {
  min-height: unset;
}
.screenshot:has(img.loaded) {
  background: var(--paper-dark); animation: none;
}
.screenshot:has(img) span { display: none; }

/* No padding modifier — edge-to-edge image */
.screenshot.flush { padding: 0; }
.screenshot.flush img { border-radius: 14px; box-shadow: none; }

/* Desktop modifier — always 8:5 */
.screenshot.desktop img {
  width: 100%; height: auto;
}

/* Phone modifier — 8:5 on tablet+ to constrain phone screenshots */
@media (min-width: 810px) {
  .screenshot.phone {
    aspect-ratio: 8 / 5;
  }
}

.live-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  margin-bottom: 8px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s;
  cursor: pointer;
}
.live-link:hover, .live-link:focus-visible { background: var(--paper-light); }
.body-p + .live-link { margin-top: 4rem; }
.live-link-title { font-size: var(--text-base); font-weight: 600; color: var(--ink); }
.live-link-desc { font-size: var(--text-sm); color: var(--ink); }
.live-link .material-symbols-sharp { font-size: 20px; color: var(--ink-faded); flex-shrink: 0; pointer-events: none; margin-left: auto; }

.pipeline-list {
  margin: 3rem 0;
}
.pipeline-step {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}
.pipeline-step:last-child { border-bottom: none; }
.pipe-title { font-size: var(--text-base); font-weight: 600; margin-bottom: 0.1rem; }
.pipe-desc { font-size: var(--text-base); color: var(--ink); }

.layer-diagram {
  margin: 3rem 0;
}
.layer-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}
.layer-row:last-child { border-bottom: none; }
.layer-lbl { font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faded); min-width: 56px; }
.layer-name { font-size: var(--text-base); font-weight: 400; }
.layer-note { font-size: var(--text-base); color: var(--ink-faded); flex: 1; text-align: right; }

@media (max-width: 809px) {
  .layer-row { flex-wrap: wrap; gap: 0.25rem; }
  .layer-note { text-align: left; flex-basis: 100%; padding-left: calc(56px + 1rem); }
}

.format-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.5rem; margin: 3rem 0;
}
.format-cell {
  background: var(--paper-dark);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}
.format-icon { font-size: 1.3rem; margin-bottom: 0.3rem; }
.format-name { font-size: var(--text-sm); font-weight: 600; margin-bottom: 0.1rem; }
.format-note { font-size: var(--text-xs); color: var(--ink-faded); }

/* ─── HEART CALLOUT ─── */
.heart-block {
  background: var(--paper-dark);
  color: var(--ink);
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.heart-block-title {
  font-family: var(--serif);
  font-size: var(--text-2xl);
  margin-bottom: 0.6rem;
}
.heart-block-body {
  font-size: var(--text-base); line-height: 1.7; opacity: 0.9;
  margin-bottom: 1rem;
}
.heart-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem;
}
.heart-pillar {
  background: rgba(255,255,255,0.5);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
}
.heart-pillar-letter {
  font-family: var(--serif); font-style: italic;
  font-size: var(--text-base); line-height: 1; margin-bottom: 0.1rem;
}
.heart-pillar-word { font-size: var(--text-xs); opacity: 0.75; }

/* ─── EXPERIENCE LIST ─── */
.exp-list { margin-bottom: 0; }
.exp-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
}
.exp-item:last-child { border-bottom: none; }
.exp-role { font-size: var(--text-base); font-weight: 600; color: var(--ink); }
.exp-co { font-size: var(--text-base); color: var(--ink); }
.exp-outcome { font-size: var(--text-base); color: var(--ink); }

@media (max-width: 809px) {
  .exp-item { grid-template-columns: 1fr; gap: 0.15rem; }
}

/* ─── DIVIDER ─── */
.divider { height: 1px; background: var(--rule); margin: 3rem 0; }

/* ─── STAT PILLS ─── */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem; margin-bottom: 2rem;
}
.stat-cell {
  padding: 1rem 0;
  text-align: left;
}
.stat-num {
  font-family: var(--sans);
  font-size: var(--text-4xl); font-weight: 400; color: var(--ink);
  line-height: 1; margin-bottom: 0.4rem;
}
.stat-lbl { font-size: var(--text-xs); color: var(--ink-faded); line-height: 1.35; }

/* ─── CONTACT LINKS ─── */
.contact-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  margin-bottom: 8px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s;
}
.contact-link:hover { background: var(--paper-light); }
.contact-link .material-symbols-sharp { font-size: 20px; color: var(--ink-faded); pointer-events: none; }
.contact-link span { font-size: var(--text-base); font-weight: 400; }

/* ─── FOOTER ─── */
.page-footer {
  margin-top: 4rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  color: var(--ink-faded);
  font-size: var(--text-sm);
}
.page-footer a {
  color: var(--ink-faded);
  text-decoration: none;
}
.page-footer a:hover { color: var(--ink); }

@media (max-width: 809px) {
  .book-card-desc { display: none; }
}

/* ─── CONTACT SHEET ─── */
#sheetContainer {
  /* Desktop: centered modal */
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sheetInner {
  background: var(--paper);
  border-radius: var(--text-base);
  border-radius: 18px;
  width: 100%;
  max-width: 36rem;
  border: 1px solid var(--rule);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#sheetContainer.open #sheetInner {
  transform: scale(1);
  opacity: 1;
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0;
}

.sheet-title {
  font-family: var(--serif);
  font-size: var(--text-4xl);
  font-weight: 400;
}

.sheet-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--ink-faded);
  cursor: pointer;
  transition: color 0.15s;
}
.sheet-close:hover { color: var(--ink); }

.sheet-body {
  padding: 16px 20px 20px;
}

/* Mobile: bottom sheet */
@media (max-width: 809px) {
  #sheetContainer {
    align-items: flex-end;
  }

  #sheetInner {
    max-width: 100%;
    border-radius: 18px 18px 0 0;
    border-bottom: none;
    transform: translateY(100%);
    opacity: 1;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  }

  #sheetContainer.open #sheetInner {
    transform: translateY(0);
  }
}

#sheetBackdrop {
  opacity: 0;
  transition: opacity 0.3s ease;
}
#sheetBackdrop.open {
  opacity: 1;
}
