:root {
  --ink: #15201d;
  --muted: #5f6d68;
  --paper: #fbfaf7;
  --shell: #f1ede5;
  --logo-ground: #2c363c;
  --logo-ground-light: #354047;
  --logo-black: #151b1f;
  --champagne: #f0cfa6;
  --teal: #0d6d70;
  --reef: #8ed7d0;
  --wine: #7d3f53;
  --gold: #d5b47d;
  --line: rgba(21, 32, 29, 0.14);
  --shadow: 0 22px 70px rgba(21, 32, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 118px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

::selection {
  background: rgba(180, 147, 69, 0.34);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(53, 64, 71, 0.98), rgba(44, 54, 60, 0.98));
  color: var(--champagne);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240, 207, 166, 0.18);
  box-shadow: 0 14px 34px rgba(12, 17, 20, 0.24);
  transition: padding 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 6px;
  padding-bottom: 6px;
  background: linear-gradient(180deg, rgba(44, 54, 60, 1), rgba(32, 40, 45, 1));
  box-shadow: 0 16px 42px rgba(12, 17, 20, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--champagne);
  font-weight: 700;
  white-space: nowrap;
}

.brand-logo {
  width: clamp(168px, 17vw, 232px);
  height: 58px;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(240, 207, 166, 0.12);
  border-radius: 4px;
  background: var(--logo-ground);
  box-shadow: 0 8px 20px rgba(12, 17, 20, 0.24);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 12px 26px rgba(12, 17, 20, 0.34);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
  font-size: 0.9rem;
}

.nav-item {
  position: relative;
}

.site-nav a,
.nav-link {
  position: relative;
  text-decoration: none;
  color: rgba(240, 207, 166, 0.82);
  font-weight: 700;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.nav-link:hover {
  color: #fff;
  text-shadow: 0 1px 12px rgba(240, 207, 166, 0.24);
}

.nav-link:hover::after,
.nav-item:hover > .nav-link::after,
.nav-item:focus-within > .nav-link::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(240, 207, 166, 0.3);
  border-radius: 4px;
  background: rgba(240, 207, 166, 0.08);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 18px);
  right: 50%;
  z-index: 12;
  display: grid;
  width: min(460px, calc(100vw - 40px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(240, 207, 166, 0.18);
  border-radius: 8px;
  background: rgba(32, 40, 45, 0.98);
  box-shadow: 0 24px 60px rgba(12, 17, 20, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-panel::before {
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 18px;
  content: "";
}

.nav-item:hover .nav-panel,
.nav-item:focus-within .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0);
}

.nav-panel a {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(240, 207, 166, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-panel.compact {
  width: min(300px, calc(100vw - 40px));
  grid-template-columns: 1fr;
}

.nav-panel.compact a {
  min-height: 48px;
}

.nav-panel a::after {
  display: none;
}

.nav-panel a:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 207, 166, 0.3);
  background: rgba(240, 207, 166, 0.08);
}

.nav-panel span {
  color: var(--champagne);
}

.nav-panel small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  line-height: 1.35;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(240, 207, 166, 0.28);
  background: transparent;
  color: var(--champagne);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle:hover span:first-child {
  transform: translateY(-1px);
}

.menu-toggle:hover span:last-child {
  transform: translateY(1px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-slideshow,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slideshow {
  overflow: hidden;
}

.hero-slide {
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1100ms ease, transform 7000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.055) translate3d(1.2%, -0.8%, 0);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 18, 17, 0.84), rgba(7, 18, 17, 0.45) 42%, rgba(7, 18, 17, 0.08)),
    linear-gradient(0deg, rgba(7, 18, 17, 0.76), rgba(7, 18, 17, 0.04) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 170px clamp(18px, 6vw, 76px) 72px;
  color: #fff;
  animation: heroContentIn 900ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3.05rem, 8vw, 6.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-dots {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 42px;
  height: 4px;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transition: width 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.hero-dot.is-active {
  width: 64px;
  background: var(--champagne);
  box-shadow: 0 0 22px rgba(240, 207, 166, 0.34);
}

.hero-dot:focus-visible {
  outline: 3px solid rgba(240, 207, 166, 0.5);
  outline-offset: 6px;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.38) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.button:hover::before {
  transform: translateX(120%);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.site-nav a:focus-visible,
.contact-link:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(180, 147, 69, 0.5);
  outline-offset: 4px;
}

.button.primary {
  background: linear-gradient(135deg, var(--teal), #06494b);
  color: #fff;
}

.button.secondary {
  background: linear-gradient(135deg, #fff, #ece7dc);
  color: var(--ink);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.intro,
.section,
.split-section,
.calendar-section,
.planner-section,
.product-section,
.faq-section,
.contact-section {
  padding: clamp(62px, 9vw, 118px) clamp(18px, 5vw, 70px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  background: #fff;
}

.intro p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.destination-card,
.article-grid article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: #24413c;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.destination-card::before,
.article-grid article::before {
  position: absolute;
  inset: -40%;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 58%);
  opacity: 0;
  transform: translate3d(-18%, -18%, 0);
  transition: opacity 240ms ease, transform 400ms ease;
}

.destination-card:hover,
.article-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 78px rgba(21, 32, 29, 0.22);
}

.destination-card:hover::before,
.article-grid article:hover::before {
  opacity: 1;
  transform: translate3d(8%, 8%, 0);
}

.destination-card > *,
.article-grid article > * {
  position: relative;
  z-index: 1;
}

.destination-card span {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

.destination-card p {
  color: rgba(255, 255, 255, 0.78);
}

.destination-card.beach {
  background: linear-gradient(150deg, #0c6d70, #073634);
}

.destination-card.spice {
  background: linear-gradient(150deg, #7d3f53, #2c1d25);
}

.destination-card.city {
  background: linear-gradient(150deg, #3a4861, #141d2b);
}

.destination-card.nature {
  background: linear-gradient(150deg, #496a42, #172616);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(24px, 5vw, 76px);
  background: var(--shell);
}

.trend-list {
  display: grid;
  gap: 16px;
}

.trend-list article {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 200ms ease, border-color 200ms ease;
}

.trend-list article:hover {
  padding-left: 14px;
  border-color: rgba(180, 147, 69, 0.48);
}

.trend-list p,
.calendar-card p,
.planner-section p,
.product-copy p,
.product-copy li,
.faq-list p {
  color: var(--muted);
}

.calendar-section {
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.98), rgba(241, 237, 229, 0.98)),
    radial-gradient(circle at 88% 18%, rgba(213, 180, 125, 0.18), transparent 34%);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.calendar-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(21, 32, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(21, 32, 29, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.calendar-card:hover {
  transform: translateY(-7px);
  border-color: rgba(213, 180, 125, 0.5);
  box-shadow: 0 28px 66px rgba(21, 32, 29, 0.14);
}

.calendar-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(44, 54, 60, 0.08);
  color: var(--logo-ground);
  font-size: 0.78rem;
  font-weight: 800;
}

.planner-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 460px);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  background: #fff;
}

.checklist {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 18px 46px rgba(21, 32, 29, 0.08);
}

.checklist label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.checklist label:hover {
  transform: translateX(4px);
  border-color: rgba(13, 109, 112, 0.2);
}

.checklist label.is-done {
  background: #eef7f5;
  color: rgba(21, 32, 29, 0.62);
  text-decoration: line-through;
}

.checklist input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 22%, rgba(180, 147, 69, 0.22), transparent 30%),
    linear-gradient(135deg, #122321, #0b1716 62%, #1b1a16);
  color: #fff;
}

.product-copy p,
.product-copy li {
  color: rgba(255, 255, 255, 0.78);
}

.product-copy ul {
  padding-left: 18px;
  margin: 24px 0 28px;
}

.product-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
  animation: panelFloat 5s ease-in-out infinite;
}

.product-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(130deg, transparent 0%, rgba(180, 147, 69, 0.12) 42%, transparent 58%);
  transform: translateX(-100%);
  animation: softSweep 4.6s ease-in-out infinite;
}

.sheet-top {
  display: flex;
  gap: 7px;
  padding: 16px;
  background: #e9efed;
}

.sheet-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wine);
}

.sheet-top span:nth-child(2) {
  background: var(--gold);
}

.sheet-top span:nth-child(3) {
  background: var(--teal);
}

.sheet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 110px;
  padding: 18px;
}

.sheet-grid > * {
  min-height: 50px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease;
}

.sheet-grid > *:hover {
  background: rgba(13, 109, 112, 0.06);
}

.pill {
  display: inline-flex;
  align-self: center;
  justify-self: start;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #d9f4f1;
  color: #075d5d;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(7, 93, 93, 0.12);
}

.pill.gold {
  background: #f3e4c1;
  color: #7a5312;
}

.pill.green {
  background: #dcebd4;
  color: #3c6330;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-grid article {
  min-height: 260px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.article-grid article:hover {
  border-color: rgba(180, 147, 69, 0.42);
}

.article-grid p {
  margin-bottom: auto;
  color: var(--gold);
  font-weight: 700;
}

.article-grid a {
  color: var(--teal);
  font-weight: 700;
  text-decoration-color: rgba(13, 109, 112, 0.22);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.article-grid a:hover {
  color: var(--gold);
  text-decoration-color: currentColor;
}

.faq-section {
  background: var(--shell);
}

.faq-list {
  display: grid;
  max-width: 920px;
  gap: 10px;
}

details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

details:hover,
details[open] {
  border-color: rgba(180, 147, 69, 0.42);
  box-shadow: 0 16px 38px rgba(21, 32, 29, 0.08);
}

details:hover {
  transform: translateY(-2px);
}

summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  float: right;
  content: "+";
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: 12px 0 0;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
}

.contact-link {
  position: relative;
  display: inline-flex;
  color: var(--teal);
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 700;
  text-decoration: none;
}

.contact-link::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 220ms ease;
}

.contact-link:hover::after {
  transform: scaleX(1);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 70px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: #fff;
  font-weight: 700;
}

.footer-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 4px;
  background: var(--logo-ground);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes softSweep {
  0%,
  42% {
    transform: translateX(-100%);
  }

  78%,
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 88px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 8px;
    background: rgba(44, 54, 60, 0.98);
    box-shadow: 0 18px 48px rgba(12, 17, 20, 0.34);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .site-nav a::after {
    bottom: 4px;
  }

  .nav-item {
    display: grid;
    gap: 8px;
  }

  .nav-panel {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 8px;
    border-color: rgba(240, 207, 166, 0.12);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-panel::before {
    display: none;
  }

  .nav-panel a {
    min-height: auto;
    padding: 10px;
  }

  .intro,
  .split-section,
  .planner-section,
  .product-section {
    grid-template-columns: 1fr;
  }

  .destination-grid,
  .calendar-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 96vh;
  }

  .hero-content {
    padding-top: 138px;
    padding-bottom: 44px;
  }

  .hero-actions,
  .hero-dots,
  .contact-section,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-dots {
    right: auto;
    bottom: 20px;
    left: 18px;
    flex-direction: row;
  }

  .button {
    width: 100%;
  }

  .destination-grid,
  .calendar-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .destination-card,
  .article-grid article {
    min-height: 230px;
  }

  .sheet-grid {
    grid-template-columns: 1fr;
  }

  .sheet-grid > * {
    min-height: 42px;
  }
}

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