/* ============================================================
   STYLE.CSS — Япония | 日本の祭りと自然のサイクル
   Main stylesheet — no animations, no transitions
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---- Variables ---- */
:root {
  --primary:       #C41E3A;
  --primary-dark:  #9B1830;
  --secondary:     #1B3A4B;
  --accent:        #C8A96E;
  --bg:            #FAFAF5;
  --surface:       #F0EBE0;
  --surface-dark:  #E4D9C8;
  --text:          #2D2D2D;
  --text-muted:    #7A7060;
  --border:        #DDD5C8;
  --white:         #FFFFFF;

  --font-head: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', Georgia, serif;
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', Arial, sans-serif;

  --max-w:      1200px;
  --pad-h:      0 20px;
  --section-y:  80px;
}

/* ---- Base ---- */
html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.75;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding: 0;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-h);
}

.section {
  padding: var(--section-y) 0;
}

.section--surface {
  background-color: var(--surface);
}

.section--dark {
  background-color: var(--secondary);
  color: var(--white);
}

/* ---- Section Headers ---- */
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section--dark .section-label {
  color: var(--accent);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section--dark .section-title {
  color: var(--white);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.85;
}

.section--dark .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc {
  margin: 0 auto;
}

.section-divider {
  display: block;
  width: 48px;
  height: 3px;
  background-color: var(--primary);
  margin: 14px auto 20px;
}

.section--dark .section-divider {
  background-color: var(--accent);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 11px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--secondary);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.site-brand__logo {
  width: 44px;
  height: 52px;
  flex-shrink: 0;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-brand__name {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: 0.03em;
}

.site-brand__tagline {
  font-size: 0.675rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ============================================================
   BLOCK 1 — HERO
   ============================================================ */
.hero {
  background-color: var(--secondary);
  color: var(--white);
  padding: 96px 0 80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.hero__keyword {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(200, 169, 110, 0.45);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.hero__image {
  aspect-ratio: 4 / 3;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  overflow: hidden;
}

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

/* ============================================================
   BLOCK 2 — INTRODUCTION
   ============================================================ */
.intro {
  padding: var(--section-y) 0;
}

/* .intro__inner grid layout moved to flex below */

.intro__side .section-title {
  font-size: 1.75rem;
}

.intro__side .section-divider {
  margin-left: 0;
  margin-right: 0;
}

.intro__content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 20px;
}

.intro__content p:last-of-type {
  margin-bottom: 28px;
}

.intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intro__tag {
  display: inline-block;
  padding: 5px 14px;
  background-color: var(--surface);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--border);
  letter-spacing: 0.06em;
}

/* ============================================================
   BLOCK 3 — FOUR SEASONS
   ============================================================ */
.seasons {
  background-color: var(--surface);
  padding: var(--section-y) 0;
}

.seasons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.season-card {
  background-color: var(--white);
  padding: 32px 24px 28px;
  border-top: 4px solid var(--border);
}

.season-card--spring { border-top-color: #D4849A; }
.season-card--summer { border-top-color: #3A9E72; }
.season-card--autumn { border-top-color: #D47B3A; }
.season-card--winter { border-top-color: #5B8FC9; }

.season-card__kanji {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.season-card--spring .season-card__kanji { color: #C4607A; }
.season-card--summer .season-card__kanji { color: #3A9E72; }
.season-card--autumn .season-card__kanji { color: #D47B3A; }
.season-card--winter .season-card__kanji { color: #5B8FC9; }

.season-card__name {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.season-card__list {
  padding: 0;
}

.season-card__list li {
  font-size: 0.875rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}

.season-card__list li:last-child {
  border-bottom: none;
}

.season-card__list li span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   BLOCK 4 — FEATURED MATSURI
   ============================================================ */
.matsuri {
  padding: var(--section-y) 0;
}

.matsuri__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.matsuri-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.matsuri-card__photo {
  aspect-ratio: 16 / 10;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.matsuri-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.matsuri-card__body {
  padding: 24px 24px 28px;
}

.matsuri-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.matsuri-card__loc {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.matsuri-card__period {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.matsuri-card__name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.matsuri-card__reading {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.matsuri-card__desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text);
}

/* ============================================================
   BLOCK 5 — AGRICULTURAL CALENDAR
   ============================================================ */
.agri-cal {
  background-color: var(--secondary);
  color: var(--white);
  padding: var(--section-y) 0;
}

/* .agri-cal__inner layout consolidated in center-aligned section below */

.agri-cal__text .section-divider {
  margin-left: 0;
}

.agri-cal__text .section-desc {
  margin-bottom: 28px;
}

/* Timeline */
.agri-timeline {
  position: relative;
  padding-left: 0;
}

.agri-timeline::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background-color: rgba(200, 169, 110, 0.35);
  display: none;
}

.agri-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 28px;
}

.agri-item::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 5px;
  width: 14px;
  height: 14px;
  background-color: var(--accent);
}

.agri-item__month {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.agri-item__name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.agri-item__desc {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.agri-cal__photo {
  aspect-ratio: 4 / 3;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  overflow: hidden;
}

.agri-cal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   BLOCK 6 — RITUAL PRACTICES
   ============================================================ */
.rituals {
  background-color: var(--surface);
  padding: var(--section-y) 0;
}

/* .rituals__grid layout defined in center-aligned section below */

.ritual-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
}

.ritual-item__photo {
  aspect-ratio: 1;
  background-color: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-align: center;
  overflow: hidden;
}

.ritual-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ritual-item__season {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.ritual-item__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.ritual-item__desc {
  font-size: 0.875rem;
  line-height: 1.78;
  color: var(--text);
}

/* ============================================================
   BLOCK 7 — GALLERY
   ============================================================ */
.gallery {
  padding: var(--section-y) 0;
}

/* .gallery__grid layout defined in center-aligned section below */

/* .gallery__item styles consolidated in center-aligned section below */

.gallery__item img,
.gallery__item-placeholder img,
.ritual-item__photo img,
.matsuri-card__photo img,
.product-card__photo img,
.hero__image img,
.agri-cal__photo img,
.contacts__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__item img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; display: block; }

.gallery__item--std   { aspect-ratio: 4 / 3; }
.gallery__item--wide  { grid-column: span 2; aspect-ratio: 16 / 7; }
.gallery__item--tall  { grid-row: span 2; aspect-ratio: unset; min-height: 360px; }

.gallery__grid .gallery__item:last-child:nth-child(3n+1) { grid-column: 1 / -1; max-width: 33%; justify-self: center; }

/* ============================================================
   BLOCK 8 — PRODUCTS
   ============================================================ */
.products {
  background-color: var(--surface);
  padding: var(--section-y) 0;
}

/* .products__grid layout defined in center-aligned section below */

.product-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.product-card__photo {
  aspect-ratio: 1;
  background-color: var(--surface-dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.product-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 20px 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.product-card__name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-card__desc {
  font-size: 0.825rem;
  line-height: 1.72;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
}

.product-card__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1;
}

.product-card__price small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}

.product-card__footer {
  padding: 16px 20px 20px;
}

.product-card__footer .btn {
  width: 100%;
  text-align: center;
}

/* ============================================================
   BLOCK 9 — CONTACTS
   ============================================================ */
.contacts {
  padding: var(--section-y) 0;
}

.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-list li:first-child {
  border-top: 1px solid var(--border);
}

.contact-list__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  min-width: 90px;
  padding-top: 2px;
  flex-shrink: 0;
}

.contact-list__value {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
}

.contact-list__value a {
  color: var(--secondary);
}

.contact-list__value a:hover {
  color: var(--primary);
}

.contacts__map {
  aspect-ratio: 4 / 3;
  background-color: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  overflow: hidden;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--secondary);
  color: rgba(255, 255, 255, 0.75);
  padding: 52px 0 24px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  flex-direction: column;
}

.footer-brand__logo {
  width: 36px;
  height: 43px;
  filter: brightness(0) invert(1);
}

.footer-brand__name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.footer-brand__desc {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 240px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-nav__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-nav__links li {
  margin-bottom: 10px;
}

.footer-nav__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav__links a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   CENTER-ALIGNED BLOCKS (index.html content sections)
   ============================================================ */
.section .section-header {
  text-align: center;
}

.intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro__side {
  width: 100%;
}

.intro__content {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.intro__tags {
  justify-content: center;
}

.rituals__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.ritual-item {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.ritual-item__photo {
  aspect-ratio: 16 / 10;
  max-height: 260px;
  overflow: hidden;
}

.ritual-item__body {
  text-align: center;
}

.agri-cal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.agri-cal__text {
  text-align: center;
}

.agri-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
  position: relative;
}

.agri-item {
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  text-align: center;
  border-left: 3px solid var(--accent);
}

.agri-item::before {
  display: none;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.gallery__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--surface);
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  color: var(--text-muted);
  font-size: 14px;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  text-align: center;
}

.product-card {
  text-align: center;
}

.product-card__name {
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .seasons__grid    { grid-template-columns: repeat(2, 1fr); }
  .matsuri__grid    { grid-template-columns: repeat(2, 1fr); }
  .products__grid   { grid-template-columns: repeat(2, 1fr); }
  .agri-cal__inner  { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-y: 56px; }

  .hero__inner       { grid-template-columns: 1fr; gap: 32px; }
  .hero__image       { display: none; }
  .intro__inner      { grid-template-columns: 1fr; gap: 32px; }
  .seasons__grid     { grid-template-columns: repeat(2, 1fr); }
  .matsuri__grid     { grid-template-columns: 1fr; }
  .rituals__grid     { grid-template-columns: 1fr; }
  .gallery__grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide  { grid-column: span 1; aspect-ratio: 4 / 3; }
  .gallery__item--tall  { grid-row: span 1; min-height: auto; aspect-ratio: 4 / 3; }
  .products__grid    { grid-template-columns: repeat(2, 1fr); }
  .contacts__inner   { grid-template-columns: 1fr; gap: 40px; }

  .site-footer__top  { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav        { grid-template-columns: repeat(2, 1fr); }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .seasons__grid   { grid-template-columns: 1fr; }
  .products__grid  { grid-template-columns: 1fr; }
  .gallery__grid   { grid-template-columns: 1fr; }
  .ritual-item     { grid-template-columns: 1fr; }
  .footer-nav      { grid-template-columns: 1fr; }
  .footer-legal    { flex-direction: column; gap: 8px; }
}

/* a11y: touch targets WCAG 2.5.5 — applied 2026-05-02 */
@media (pointer: coarse) {
  a, button, input[type="checkbox"], input[type="radio"], input[type="submit"], input[type="button"], summary, [role="button"] {
    min-width: 24px;
    min-height: 24px;
  }
}
/* a11y: prefers-reduced-motion / prefers-color-scheme awareness */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

