:root {
  --ay-primary:       #722F37;
  --ay-primary-dark:  #5A1F27;
  --ay-primary-light: #8B3A44;
  --ay-gold:          #D4AF37;
  --ay-gold-dark:     #B8952E;
  --ay-gold-light:    #E5C76B;
  --ay-deep:          #1E1218;
  --ay-ivory:         #FFF8E7;
  --ay-surface:       #FFFFFF;
  --ay-surface-alt:   #FAF3E8;
  --ay-text:          #2D1B1E;
  --ay-text-muted:    #7A6B6E;
  --ay-border:        rgba(114, 47, 55, 0.15);
  --ay-border-mid:    rgba(114, 47, 55, 0.3);
  --ay-border-strong: #722F37;
  --ay-shadow:        0 2px 12px rgba(30, 18, 24, 0.08);
  --ay-shadow-hover:  0 4px 20px rgba(30, 18, 24, 0.14);
  /* Legacy aliases for any templates still referencing old names */
  --ay-ink:       #2D1B1E;
  --ay-rouge:     #722F37;
  --ay-plum:      #5A1F27;
  --ay-lavender:  #E5C76B;
  --ay-blue:      #722F37;
  --ay-mint:      #FAF3E8;
  --ay-apricot:   #D4AF37;
  --ay-paper:     #FFF8E7;
  --ay-cream:     #FAF3E8;
  --ay-muted:     #7A6B6E;
  --ay-line:      rgba(114, 47, 55, 0.15);
  --ay-deep-line: rgba(114, 47, 55, 0.3);

  /* Type scale — Art Deco modular (ratio ~1.35) */
  --ay-ts-xs:   clamp(0.72rem, 0.65rem + 0.15vw, 0.78rem);
  --ay-ts-sm:   clamp(0.82rem, 0.76rem + 0.2vw, 0.9rem);
  --ay-ts-base: clamp(1rem, 0.92rem + 0.25vw, 1.08rem);
  --ay-ts-md:   clamp(1.2rem, 1.05rem + 0.5vw, 1.45rem);
  --ay-ts-lg:   clamp(1.6rem, 1.3rem + 1vw, 2.2rem);
  --ay-ts-xl:   clamp(2.2rem, 1.6rem + 2vw, 3.6rem);
  --ay-ts-2xl:  clamp(3rem, 2rem + 3.5vw, 5.4rem);
  --ay-ts-hero: clamp(4.4rem, 3rem + 6vw, 12rem);

  /* Spacing scale */
  --ay-sp-xs:  clamp(0.5rem, 0.4rem + 0.3vw, 0.75rem);
  --ay-sp-sm:  clamp(0.75rem, 0.6rem + 0.5vw, 1.1rem);
  --ay-sp-md:  clamp(1.2rem, 1rem + 0.8vw, 1.8rem);
  --ay-sp-lg:  clamp(2rem, 1.5rem + 1.5vw, 3rem);
  --ay-sp-xl:  clamp(3rem, 2rem + 3vw, 5.5rem);
  --ay-sp-2xl: clamp(5rem, 3.5rem + 5vw, 9rem);
  --ay-sp-sec: clamp(4rem, 3rem + 4vw, 8rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Microsoft JhengHei", "Noto Sans TC", Arial, sans-serif;
  color: var(--ay-ink);
  background:
    linear-gradient(90deg, rgba(114,47,55,.04) 1px, transparent 1px),
    linear-gradient(180deg, #FFF8E7 0%, #FAF3E8 50%, #F5EDE0 100%);
  background-size: 96px 96px, auto;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--ay-gold-dark); }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
.ay-skip { position: absolute; left: -999px; top: 1rem; z-index: 40; background: var(--ay-ink); color: white; padding: .7rem 1rem; border-radius: 8px; }
.ay-skip:focus { left: 1rem; }
.ay-main { overflow: clip; }

.ay-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 248, 231, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--ay-border);
}
.ay-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--ay-primary), var(--ay-gold), var(--ay-primary-light));
  transform: scaleX(var(--ay-progress, 0));
  transform-origin: left center;
}
.ay-nav {
  width: min(1320px, calc(100% - 28px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.ay-brand { justify-self: start; display: inline-flex; align-items: center; gap: .75rem; font-weight: 950; }
.ay-brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from 220deg, #FFF8E7, #D4AF37, #722F37, #FFF8E7);
  border: 1px solid rgba(114,47,55,.3);
  box-shadow: 0 12px 30px rgba(114,47,55,.18);
}
.ay-brand-mark img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.ay-brand-text { line-height: 1.15; }
.ay-navlinks {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: .15rem;
  padding: .22rem;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--ay-border-mid);
  border-radius: 999px;
}
.ay-navlinks a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: .42rem .82rem;
  border-radius: 999px;
  color: var(--ay-muted);
  font-weight: 850;
}
.ay-navlinks a:hover, .ay-navlinks a:focus-visible { background: var(--ay-primary); color: var(--ay-gold-light); outline: 0; }
.ay-menu { display: none; justify-self: end; border: 1px solid var(--ay-deep-line); background: var(--ay-paper); border-radius: 8px; min-height: 42px; padding: .45rem .8rem; font-weight: 950; }

.ay-opera-hero {
  position: relative;
  min-height: min(860px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  padding: clamp(3rem, 7vw, 6rem) max(20px, calc((100vw - 1320px) / 2)) clamp(2.2rem, 5vw, 4rem);
  isolation: isolate;
}
.ay-hero-wall {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.ay-hero-wall img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 45%; filter: saturate(1.14) contrast(1.02); }
.ay-opera-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,248,231,.98) 0 34%, rgba(255,248,231,.7) 54%, rgba(255,248,231,.16) 100%),
    linear-gradient(180deg, rgba(30,18,24,.06), rgba(250,243,232,.6));
}
.ay-opera-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .72;
  background: radial-gradient(circle at var(--ay-pointer-x, 72%) var(--ay-pointer-y, 45%), rgba(255,255,255,.78), rgba(255,255,255,0) 28%);
  mix-blend-mode: screen;
}
.ay-hero-copy { max-width: min(980px, 74vw); }
.ay-kicker {
  margin: 0 0 .4rem;
  color: var(--ay-primary);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ay-opera-hero h1 {
  margin: 0;
  max-width: 7ch;
  font-size: clamp(4.4rem, 14vw, 13.5rem);
  line-height: .78;
  letter-spacing: 0;
  text-wrap: balance;
}
.ay-opera-hero p { max-width: 700px; color: var(--ay-muted); font-size: clamp(1rem, 1.6vw, 1.2rem); }
.ay-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.3rem; }
.ay-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: .75rem 1rem;
  border: 1px solid var(--ay-deep-line);
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ay-btn:hover { transform: translateY(-2px); box-shadow: var(--ay-shadow-hover); }
.ay-btn-primary { background: var(--ay-primary); color: var(--ay-gold-light); border-color: var(--ay-primary-dark); }
.ay-btn-soft { background: rgba(255,248,231,.82); color: var(--ay-primary); border-color: var(--ay-border-mid); }
.ay-hero-ribbons {
  position: absolute;
  right: clamp(18px, 7vw, 120px);
  bottom: clamp(1.4rem, 5vw, 4rem);
  display: grid;
  gap: .4rem;
  transform: rotate(-6deg);
}
.ay-hero-ribbons span {
  width: fit-content;
  padding: .42rem .7rem;
  background: var(--ay-ivory);
  border: 1px solid var(--ay-border-mid);
  box-shadow: 0 12px 30px rgba(30,18,24,.12);
  color: var(--ay-primary);
  font-weight: 950;
}

.ay-section, .ay-page-hero, .ay-footer-grid, .ay-court-metrics {
  width: min(1320px, calc(100% - 28px));
  margin-inline: auto;
}
.ay-section { padding: clamp(3.4rem, 7vw, 7rem) 0; }
.ay-section-head { max-width: 880px; margin-bottom: 1.6rem; }
.ay-section-head h2, .ay-section h2, .ay-page-hero h1 {
  margin: 0 0 .72rem;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: .95;
  letter-spacing: 0;
}
.ay-section-head p, .ay-section p, .ay-page-hero p, .ay-wide-text { color: var(--ay-muted); }

.ay-court-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  transform: translateY(-1px);
  border: 1px solid var(--ay-deep-line);
  background: var(--ay-paper);
}
.ay-court-metrics div { min-height: 132px; padding: 1.05rem; display: grid; align-content: center; border-right: 1px solid var(--ay-line); }
.ay-court-metrics div:last-child { border-right: 0; }
.ay-court-metrics span, .ay-tool-cards span, .ay-tool-routing span { color: var(--ay-gold); font-weight: 950; }
.ay-court-metrics strong { font-size: 1.35rem; }
.ay-court-metrics p { margin: .18rem 0 0; }

.ay-runway { width: 100%; padding-inline: max(14px, calc((100vw - 1320px) / 2)); }
.ay-runway-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(520px, 520px);
  overflow-x: auto;
  border-block: 1px solid var(--ay-deep-line);
  background: linear-gradient(90deg, var(--ay-deep), var(--ay-primary-dark));
  cursor: grab;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}
.ay-runway-track.is-dragging { cursor: grabbing; user-select: none; }
.ay-runway-track article {
  min-height: 300px;
  padding: 1.1rem;
  display: grid;
  align-content: space-between;
  border-right: 1px solid rgba(255,255,255,.22);
  color: white;
  scroll-snap-align: start;
  transition: transform .25s ease, background .25s ease;
}
.ay-runway-track article.is-reel-active { background: rgba(255,255,255,.12); transform: translateY(-8px); }
.ay-runway-track span { width: fit-content; color: var(--ay-gold-light); font-weight: 950; }
.ay-runway-track strong { font-size: 1.55rem; line-height: 1.12; }
.ay-runway-track p { color: rgba(255,255,255,.76); }

.ay-opera-split {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, 1fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
}
.ay-opera-text { border-left: 10px solid var(--ay-primary); padding-left: clamp(1rem, 3vw, 2rem); }
.ay-poster-stack { position: relative; min-height: 530px; }
.ay-poster-stack img {
  width: 82%;
  margin-left: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--ay-deep-line);
  box-shadow: var(--ay-shadow);
  clip-path: polygon(0 7%, 100% 0, 93% 100%, 6% 93%);
}
.ay-check-list {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(430px, 76%);
  margin: 0;
  padding: 1rem 1rem 1rem 2rem;
  background: var(--ay-paper);
  border: 1px solid var(--ay-deep-line);
  box-shadow: 0 18px 40px rgba(30,18,24,.14);
  color: var(--ay-text-muted);
}

.ay-opera-panels, .ay-tool-cards, .ay-review-grid, .ay-card-row, .ay-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ay-deep-line);
  border: 1px solid var(--ay-deep-line);
}
.ay-opera-panels article, .ay-tool-cards a, .ay-review-grid article, .ay-card-row article, .ay-proof-grid div {
  min-height: 250px;
  padding: 1rem;
  background: rgba(255,248,231,.8);
}
.ay-opera-panels article:nth-child(2) { transform: translateY(28px); }
.ay-opera-panels img, .ay-card-row img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: .85rem;
  border: 1px solid rgba(114,47,55,.24);
}
.ay-opera-panels h3, .ay-tool-cards strong, .ay-card-row h3 { margin: .2rem 0 .4rem; font-size: 1.32rem; line-height: 1.2; }

.ay-ledger-runway { width: 100%; padding-inline: max(14px, calc((100vw - 1320px) / 2)); }
.ay-matrix {
  display: grid;
  grid-template-columns: .7fr repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--ay-deep-line);
  background: var(--ay-deep-line);
  box-shadow: var(--ay-shadow);
}
.ay-matrix span, .ay-matrix b {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: .8rem;
  text-align: center;
  background: var(--ay-paper);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.ay-matrix span { color: var(--ay-primary); font-weight: 950; background: #F5EDE0; }
.ay-matrix b { font-weight: 800; }
.ay-matrix > .is-active {
  background: var(--ay-primary-dark);
  color: var(--ay-gold-light);
  transform: translateY(-2px);
}

.ay-cabinet-wall { width: 100%; padding-inline: max(14px, calc((100vw - 1320px) / 2)); background: rgba(255,255,255,.22); }
.ay-map-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--ay-deep-line);
  background: var(--ay-deep-line);
}
.ay-map-grid a {
  min-height: 128px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: .9rem;
  background: rgba(255,248,231,.82);
  font-weight: 950;
}
.ay-map-grid a:hover, .ay-tool-routing a:hover { background: var(--ay-primary); color: var(--ay-gold-light); }

.ay-empty-state {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid var(--ay-deep-line);
  background: var(--ay-paper);
}
.ay-tool-runway { width: 100%; padding-inline: max(14px, calc((100vw - 1320px) / 2)); }
.ay-tool-cards a {
  min-height: 270px;
  display: grid;
  align-content: space-between;
  transition: transform .2s ease, background .2s ease;
}
.ay-tool-cards[data-ay-reel] {
  grid-auto-flow: column;
  grid-auto-columns: minmax(420px, 420px);
  grid-template-columns: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  cursor: grab;
}
.ay-tool-cards[data-ay-reel].is-dragging { cursor: grabbing; user-select: none; }
.ay-tool-cards[data-ay-reel] a { scroll-snap-align: start; }
.ay-tool-cards[data-ay-reel] a.is-reel-active { background: #FAF3E8; transform: translateY(-8px); }
.ay-tool-cards a:hover { transform: translateY(-8px); background: #FAF3E8; }

.ay-risk {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .45fr);
  gap: 1.4rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-block: 1px solid var(--ay-deep-line);
  background: linear-gradient(90deg, rgba(30,18,24,.94), rgba(114,47,55,.82));
  color: white;
}
.ay-risk p { color: rgba(255,255,255,.76); }
.ay-risk img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.35);
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
}

.ay-faq-list { display: grid; gap: 1px; border: 1px solid var(--ay-deep-line); background: var(--ay-deep-line); }
.ay-faq-list details { background: rgba(255,248,231,.82); padding: 1rem 1.1rem; }
.ay-faq-list summary { cursor: pointer; font-weight: 950; }

.ay-page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: end;
  padding: clamp(2rem, 6vw, 5rem) 0 2rem;
}
.ay-page-hero h1 { max-width: 10ch; }
.ay-page-hero img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--ay-deep-line);
  box-shadow: var(--ay-shadow);
  clip-path: polygon(0 0, 100% 7%, 94% 100%, 5% 92%);
}

.ay-tool-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, .62fr);
  gap: 1px;
  padding: 0;
  border: 1px solid var(--ay-deep-line);
  background: var(--ay-deep-line);
  box-shadow: var(--ay-shadow);
}
.ay-tool-form, .ay-check-tool {
  display: grid;
  gap: .75rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  background: rgba(255,248,231,.84);
}
.ay-comparison-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ay-comparison-form button { grid-column: 1 / -1; }
.ay-tool-form label, .ay-check-tool label, .ay-form label, .ay-search-box label { display: grid; gap: .35rem; color: var(--ay-muted); font-weight: 950; }
.ay-tool-form input, .ay-form input, .ay-form textarea, .ay-search-box input {
  width: 100%;
  border: 1px solid var(--ay-deep-line);
  border-radius: 8px;
  padding: .72rem .8rem;
  color: var(--ay-ink);
  background: var(--ay-paper);
}
.ay-check-tool label { min-height: 52px; grid-template-columns: auto 1fr; align-items: center; padding: .65rem .75rem; border: 1px solid var(--ay-line); background: rgba(255,255,255,.68); }
.ay-tool-result {
  min-height: 100%;
  padding: clamp(1rem, 3vw, 1.4rem);
  display: grid;
  align-content: center;
  background: linear-gradient(160deg, #FAF3E8, #F5EDE0);
  font-size: 1.08rem;
}
.ay-tool-result strong { display: block; margin-bottom: .35rem; font-size: 1.32rem; color: var(--ay-primary); }
.ay-tool-result.is-updated { animation: ay-result-pop .42s ease; }
@keyframes ay-result-pop {
  0% { transform: scale(.985); }
  45% { transform: scale(1.018); }
  100% { transform: scale(1); }
}
.ay-tool-routing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--ay-deep-line);
  background: var(--ay-deep-line);
}
.ay-tool-routing div { min-height: 220px; display: grid; align-content: space-between; padding: 1rem; background: rgba(255,248,231,.82); }
.ay-tool-routing strong { font-size: 1.25rem; }
.ay-tool-routing a { width: fit-content; padding: .5rem .72rem; border: 1px solid var(--ay-deep-line); font-weight: 950; }

.ay-author, .ay-contact-grid { display: grid; grid-template-columns: minmax(260px, .44fr) minmax(0, 1fr); gap: 1.4rem; align-items: center; }
.ay-author > img { width: min(340px, 100%); aspect-ratio: 1; object-fit: cover; border: 1px solid var(--ay-deep-line); clip-path: polygon(50% 0, 100% 16%, 100% 84%, 50% 100%, 0 84%, 0 16%); }
.ay-method { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--ay-deep-line); background: var(--ay-deep-line); }
.ay-method > div, .ay-form, .ay-search-box { padding: 1rem; background: rgba(255,248,231,.82); }
.ay-prose .ay-section { max-width: 880px; }
.ay-prose table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.ay-prose th { background: var(--ay-primary); color: var(--ay-gold-light); padding: 10px 14px; font-weight: 700; text-align: left; font-size: 0.875rem; }
.ay-prose td { padding: 10px 14px; border-bottom: 1px solid var(--ay-line); font-size: 0.875rem; color: var(--ay-text); }
.ay-prose tr:nth-child(even) td { background: rgba(255,248,231,.55); }
.ay-terms dl { display: grid; gap: 1px; border: 1px solid var(--ay-deep-line); background: var(--ay-deep-line); }
.ay-terms dt { padding: 1rem 1rem 0; background: rgba(255,248,231,.82); color: var(--ay-primary); font-size: 1.35rem; font-weight: 950; }
.ay-terms dd { margin: 0; padding: 0 1rem 1rem; background: rgba(255,248,231,.82); color: var(--ay-muted); }
.ay-search-box { border: 1px solid var(--ay-deep-line); }
.ay-search-results { display: grid; gap: 1px; margin-top: 1rem; border: 1px solid var(--ay-deep-line); background: var(--ay-deep-line); }
.ay-search-results a { display: block; padding: .85rem; background: var(--ay-paper); }
.ay-search-results strong { display: block; }
.ay-search-results span { color: var(--ay-muted); }

.ay-footer { margin-top: 4rem; padding: clamp(2.2rem, 5vw, 4rem) 0; color: white; background: var(--ay-deep); }
.ay-footer-grid { display: grid; grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(140px, 1fr)); gap: 1.2rem; }
.ay-footer p { color: rgba(255,255,255,.68); margin: .6rem 0 0; }
.ay-footer h2 { font-size: 1rem; margin: 0 0 .6rem; color: var(--ay-gold-light); }
.ay-footer a { display: block; color: rgba(255,255,255,.82); margin: .32rem 0; }
.ay-footer a:hover { color: var(--ay-gold-light); }
.ay-footer-brand { font-size: 1.35rem; font-weight: 950; color: var(--ay-gold) !important; }

.ay-reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .ay-reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
  .ay-reveal.is-visible { opacity: 1; transform: translateY(0); }
  @supports (animation-timeline: view()) {
  .ay-hero-ribbons { animation: ay-ribbon-drift both linear; animation-timeline: view(); animation-range: contain 0% cover 60%; }
    .ay-runway-track article { animation: ay-reel-depth both linear; animation-timeline: view(); animation-range: entry 0% cover 40%; }
    .ay-opera-panels article:nth-child(2) { animation: ay-panel-drop both linear; animation-timeline: view(); animation-range: entry 0% cover 45%; }
    @keyframes ay-ribbon-drift { from { transform: translateY(0) rotate(-6deg); } to { transform: translateY(-80px) rotate(-2deg); } }
    @keyframes ay-panel-drop { from { transform: translateY(58px); } to { transform: translateY(28px); } }
    @keyframes ay-reel-depth { from { transform: translateY(22px); } to { transform: translateY(0); } }
  }
}

@media (max-width: 960px) {
  .ay-nav { grid-template-columns: 1fr auto; }
  .ay-menu { display: inline-flex; }
  .ay-navlinks {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    padding: .75rem;
    border-radius: 8px;
    background: var(--ay-paper);
    box-shadow: var(--ay-shadow);
  }
  .ay-navlinks.is-open { display: grid; }
  .ay-opera-hero { min-height: auto; padding-top: 5rem; }
  .ay-opera-hero::before { background: linear-gradient(180deg, rgba(255,248,231,.94), rgba(255,248,231,.76)); }
  .ay-opera-hero::after { display: none; }
  .ay-hero-copy { max-width: 100%; }
  .ay-hero-ribbons { position: static; margin-top: 2rem; transform: none; display: flex; flex-wrap: wrap; }
  .ay-court-metrics, .ay-opera-split, .ay-opera-panels, .ay-tool-cards, .ay-review-grid, .ay-card-row, .ay-proof-grid, .ay-risk, .ay-page-hero, .ay-tool-panel, .ay-tool-routing, .ay-author, .ay-contact-grid, .ay-method, .ay-footer-grid {
    grid-template-columns: 1fr;
  }
  .ay-court-metrics div { border-right: 0; border-bottom: 1px solid var(--ay-line); }
  .ay-court-metrics div:last-child { border-bottom: 0; }
  .ay-poster-stack { min-height: auto; display: grid; gap: 1rem; }
  .ay-poster-stack img { width: 100%; }
  .ay-check-list { position: static; width: 100%; }
  .ay-opera-panels article:nth-child(2) { transform: none; }
  .ay-map-grid, .ay-matrix { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ay-runway-track { grid-auto-columns: minmax(320px, 82vw); }
  .ay-tool-cards[data-ay-reel] { grid-auto-columns: minmax(300px, 82vw); }
}

@media (max-width: 560px) {
  .ay-opera-hero h1 { font-size: clamp(4rem, 26vw, 6.3rem); }
  .ay-brand-text { max-width: 7em; }
  .ay-actions, .ay-empty-state { display: grid; grid-template-columns: 1fr; }
  .ay-comparison-form { grid-template-columns: 1fr; }
  .ay-map-grid, .ay-matrix { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Art Deco Showcase  (ay-hp-*)
   Formal, centered, decorative. Generous vertical spacing.
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero: centred oversized elegant type + gold accent borders ── */
.ay-hp-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: min(92vh, 920px);
  padding: var(--ay-sp-2xl) max(20px, calc((100vw - 1320px) / 2));
  isolation: isolate;
  overflow: hidden;
}
.ay-hp-hero-bg {
  position: absolute; inset: 0; z-index: -2; overflow: hidden;
}
.ay-hp-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 40%; filter: saturate(1.1) contrast(1.02);
}
.ay-hp-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(255,248,231,.92), rgba(255,248,231,.62) 60%, rgba(255,248,231,.2)),
    linear-gradient(180deg, rgba(30,18,24,.08), rgba(250,243,232,.7));
}
.ay-hp-hero-kicker {
  margin: 0 0 var(--ay-sp-sm);
  color: var(--ay-gold-dark);
  font-size: var(--ay-ts-xs);
  font-weight: 950;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.ay-hp-hero h1 {
  margin: 0;
  font-size: var(--ay-ts-hero);
  line-height: .82;
  letter-spacing: -.02em;
  text-wrap: balance;
  color: var(--ay-primary-dark);
}
.ay-hp-hero-sub {
  max-width: 56ch;
  margin: var(--ay-sp-md) auto 0;
  color: var(--ay-muted);
  font-size: var(--ay-ts-base);
  line-height: 1.75;
}
.ay-hp-hero-actions {
  display: flex; flex-wrap: wrap; gap: var(--ay-sp-sm);
  justify-content: center;
  margin-top: var(--ay-sp-lg);
}
/* gold accent lines flanking hero */
.ay-hp-hero-deco {
  display: flex; align-items: center; gap: 1rem;
  margin-top: var(--ay-sp-lg);
  color: var(--ay-gold);
  font-size: var(--ay-ts-xs);
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ay-hp-hero-deco::before,
.ay-hp-hero-deco::after {
  content: ""; flex: 0 0 clamp(36px, 6vw, 80px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--ay-gold), transparent);
}

/* ── Decorative divider between sections ─────────────────────── */
.ay-hp-divider {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  padding: var(--ay-sp-md) 0;
}
.ay-hp-divider::before,
.ay-hp-divider::after {
  content: ""; flex: 1; max-width: 180px; height: 1px;
  background: var(--ay-border-mid);
}
.ay-hp-divider-gem {
  width: 10px; height: 10px;
  background: var(--ay-gold);
  transform: rotate(45deg);
}

/* ── Section container for centred layout ────────────────────── */
.ay-hp-section {
  width: min(1320px, calc(100% - 28px));
  margin-inline: auto;
  padding: var(--ay-sp-sec) 0;
}
.ay-hp-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--ay-sp-xl);
}
.ay-hp-section-head .ay-kicker {
  margin-bottom: var(--ay-sp-xs);
}
.ay-hp-section-head h2 {
  margin: 0 0 var(--ay-sp-sm);
  font-size: var(--ay-ts-xl);
  line-height: .96;
  letter-spacing: -.01em;
}
.ay-hp-section-head p {
  color: var(--ay-muted);
  font-size: var(--ay-ts-base);
  max-width: 54ch;
  margin-inline: auto;
}

/* ── S2 Principles: 3-col gold-bordered exhibit panels ───────── */
.ay-hp-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--ay-gold);
  position: relative;
}
.ay-hp-principles::before {
  content: "";
  position: absolute; inset: -6px;
  border: 1px solid var(--ay-border);
  pointer-events: none;
}
.ay-hp-principle {
  padding: var(--ay-sp-lg);
  text-align: center;
  border-right: 1px solid var(--ay-gold-light);
  background: var(--ay-surface);
}
.ay-hp-principle:last-child { border-right: 0; }
.ay-hp-principle span {
  display: block;
  font-size: var(--ay-ts-2xl);
  font-weight: 950;
  color: var(--ay-gold);
  line-height: 1;
  margin-bottom: var(--ay-sp-xs);
}
.ay-hp-principle strong {
  display: block;
  font-size: var(--ay-ts-md);
  margin-bottom: var(--ay-sp-xs);
  color: var(--ay-primary);
}

/* ── S3 Horizontal reel: centred decorative reframe ──────────── */
.ay-hp-reel-section {
  width: 100%;
  padding: var(--ay-sp-sec) max(14px, calc((100vw - 1320px) / 2));
  background: linear-gradient(135deg, var(--ay-deep), var(--ay-primary-dark));
  border-block: 2px solid var(--ay-gold);
}
.ay-hp-reel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(480px, 480px);
  overflow-x: auto;
  cursor: grab;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  gap: 1px;
}
.ay-hp-reel-track.is-dragging { cursor: grabbing; user-select: none; }
.ay-hp-reel-card {
  min-height: 280px;
  padding: var(--ay-sp-lg);
  display: grid;
  align-content: space-between;
  border-right: 1px solid rgba(212,175,55,.25);
  color: white;
  scroll-snap-align: start;
  position: relative;
}
.ay-hp-reel-card span {
  color: var(--ay-gold-light);
  font-weight: 950;
  font-size: var(--ay-ts-sm);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ay-hp-reel-card strong {
  font-size: var(--ay-ts-lg);
  line-height: 1.1;
  display: block;
  margin: var(--ay-sp-sm) 0;
}
.ay-hp-reel-card p { color: rgba(255,255,255,.7); font-size: var(--ay-ts-sm); }

/* ── S4 World Cup: centred split with decorative frame ───────── */
.ay-hp-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ay-sp-xl);
  align-items: center;
}
.ay-hp-feature-text {
  border-left: 3px solid var(--ay-gold);
  padding-left: var(--ay-sp-lg);
}
.ay-hp-feature-text h2 {
  font-size: var(--ay-ts-xl);
  line-height: .96;
  margin: 0 0 var(--ay-sp-md);
}
.ay-hp-feature-text p { color: var(--ay-muted); }
.ay-hp-feature-text ul {
  margin: var(--ay-sp-md) 0 0;
  padding: 0;
  list-style: none;
}
.ay-hp-feature-text li {
  padding: var(--ay-sp-xs) 0;
  border-bottom: 1px solid var(--ay-border);
  font-size: var(--ay-ts-sm);
  color: var(--ay-muted);
}
.ay-hp-feature-text li:last-child { border-bottom: 0; }
.ay-hp-feature-visual {
  position: relative;
  border: 2px solid var(--ay-gold);
  padding: 6px;
}
.ay-hp-feature-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.ay-hp-feature-visual::before {
  content: ""; position: absolute; inset: -10px;
  border: 1px solid var(--ay-border);
  pointer-events: none;
}

/* ── S5 Categories: 1-2-1 pyramid showcase ───────────────────── */
.ay-hp-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ay-sp-lg);
}
.ay-hp-panels-row {
  display: grid;
  gap: var(--ay-sp-lg);
}
.ay-hp-panels-row.ay-hp-panels-center {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-inline: auto;
}
.ay-hp-panels-row.ay-hp-panels-duo {
  grid-template-columns: 1fr 1fr;
}
.ay-hp-panel {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ay-border-mid);
  background: var(--ay-surface);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.ay-hp-panel:hover {
  border-color: var(--ay-gold);
  box-shadow: 0 8px 32px rgba(114,47,55,.1);
}
.ay-hp-panel img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-bottom: 1px solid var(--ay-border);
}
.ay-hp-panel-body {
  padding: var(--ay-sp-md) var(--ay-sp-lg);
  text-align: center;
}
.ay-hp-panel-body h3 {
  font-size: var(--ay-ts-md);
  margin: 0 0 var(--ay-sp-xs);
}
.ay-hp-panel-body p { color: var(--ay-muted); font-size: var(--ay-ts-sm); }

/* ── S6 Comparison matrix: centered showcase table ───────────── */
.ay-hp-matrix-wrap {
  max-width: 960px;
  margin-inline: auto;
  border: 2px solid var(--ay-gold);
  position: relative;
}
.ay-hp-matrix-wrap::before {
  content: ""; position: absolute; inset: -8px;
  border: 1px solid var(--ay-border);
  pointer-events: none;
}
.ay-hp-matrix {
  display: grid;
  grid-template-columns: .7fr repeat(3, 1fr);
  gap: 1px;
  background: var(--ay-border-mid);
}
.ay-hp-matrix span, .ay-hp-matrix b {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: var(--ay-sp-sm);
  text-align: center;
  background: var(--ay-surface);
}
.ay-hp-matrix span {
  color: var(--ay-primary);
  font-weight: 950;
  background: var(--ay-surface-alt);
}

/* ── S7 Glossary: centered grid of framed tags ───────────────── */
.ay-hp-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--ay-sp-sm);
  max-width: 800px;
  margin-inline: auto;
}
.ay-hp-tag {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: var(--ay-sp-xs) var(--ay-sp-md);
  border: 2px solid var(--ay-border-mid);
  font-weight: 950;
  font-size: var(--ay-ts-sm);
  transition: background .2s, border-color .2s, color .2s;
}
.ay-hp-tag:hover {
  background: var(--ay-primary);
  border-color: var(--ay-primary);
  color: var(--ay-gold-light);
}

/* ── S8 Reviews empty / populated ────────────────────────────── */
.ay-hp-reviews-empty {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  padding: var(--ay-sp-xl);
  border: 2px dashed var(--ay-border-mid);
  background: var(--ay-surface-alt);
}
.ay-hp-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ay-sp-md);
}
.ay-hp-review-card {
  border: 1px solid var(--ay-border-mid);
  background: var(--ay-surface);
  padding: var(--ay-sp-md);
  text-align: center;
  transition: border-color .2s;
}
.ay-hp-review-card:hover { border-color: var(--ay-gold); }
.ay-hp-review-card h3 { font-size: var(--ay-ts-md); margin: 0 0 var(--ay-sp-xs); }
.ay-hp-review-card p { color: var(--ay-muted); font-size: var(--ay-ts-sm); }

/* ── S9 Tools: 3 framed exhibit panels ───────────────────────── */
.ay-hp-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--ay-gold);
  position: relative;
}
.ay-hp-tools::before {
  content: ""; position: absolute; inset: -8px;
  border: 1px solid var(--ay-border);
  pointer-events: none;
}
.ay-hp-tool {
  padding: var(--ay-sp-xl) var(--ay-sp-lg);
  text-align: center;
  border-right: 1px solid var(--ay-gold-light);
  background: var(--ay-surface);
  display: flex; flex-direction: column; align-items: center;
  transition: background .2s ease;
}
.ay-hp-tool:last-child { border-right: 0; }
.ay-hp-tool:hover { background: var(--ay-surface-alt); }
.ay-hp-tool span {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border: 2px solid var(--ay-gold);
  color: var(--ay-gold-dark);
  font-weight: 950;
  font-size: var(--ay-ts-md);
  margin-bottom: var(--ay-sp-md);
}
.ay-hp-tool strong {
  font-size: var(--ay-ts-md);
  margin-bottom: var(--ay-sp-xs);
  display: block;
}
.ay-hp-tool p { color: var(--ay-muted); font-size: var(--ay-ts-sm); flex: 1; }

/* ── S10 Risk: centred invitation card ───────────────────────── */
.ay-hp-risk {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--ay-sp-xl);
  align-items: center;
  max-width: 1000px;
  margin-inline: auto;
  padding: var(--ay-sp-xl);
  border: 2px solid var(--ay-gold);
  background: linear-gradient(135deg, var(--ay-deep), var(--ay-primary-dark));
  color: white;
  position: relative;
}
.ay-hp-risk::before {
  content: ""; position: absolute; inset: -8px;
  border: 1px solid rgba(212,175,55,.3);
  pointer-events: none;
}
.ay-hp-risk p { color: rgba(255,255,255,.72); }
.ay-hp-risk img {
  width: clamp(200px, 22vw, 300px);
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid rgba(212,175,55,.3);
}

/* ── S11 FAQ: centered narrow ────────────────────────────────── */
.ay-hp-faq {
  max-width: 760px;
  margin-inline: auto;
}

/* ── S12 Nav: centred tag cloud ──────────────────────────────── */
.ay-hp-nav-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--ay-sp-sm);
  max-width: 900px;
  margin-inline: auto;
}
.ay-hp-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: var(--ay-sp-xs) var(--ay-sp-md);
  border: 1px solid var(--ay-border-mid);
  font-weight: 950;
  font-size: var(--ay-ts-sm);
  transition: background .2s, color .2s, border-color .2s;
}
.ay-hp-nav-link:hover {
  background: var(--ay-primary);
  border-color: var(--ay-primary);
  color: var(--ay-gold-light);
}

/* ── Homepage responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
  .ay-hp-principles { grid-template-columns: 1fr; }
  .ay-hp-principle { border-right: 0; border-bottom: 1px solid var(--ay-gold-light); }
  .ay-hp-principle:last-child { border-bottom: 0; }
  .ay-hp-feature { grid-template-columns: 1fr; }
  .ay-hp-panels-row.ay-hp-panels-duo { grid-template-columns: 1fr; }
  .ay-hp-matrix { grid-template-columns: repeat(2, 1fr); }
  .ay-hp-tools { grid-template-columns: 1fr; }
  .ay-hp-tool { border-right: 0; border-bottom: 1px solid var(--ay-gold-light); }
  .ay-hp-tool:last-child { border-bottom: 0; }
  .ay-hp-review-grid { grid-template-columns: 1fr; }
  .ay-hp-risk { grid-template-columns: 1fr; text-align: center; }
  .ay-hp-risk img { margin-inline: auto; }
  .ay-hp-reel-track { grid-auto-columns: minmax(320px, 85vw); }
}

@media (max-width: 560px) {
  .ay-hp-hero h1 { font-size: clamp(3.6rem, 18vw, 5.5rem); }
  .ay-hp-hero { min-height: auto; padding-top: 6rem; padding-bottom: 3rem; }
}

/* ═══════════════════════════════════════════════════════════════
   MOTION LAYER — Vintage Casino
   ═══════════════════════════════════════════════════════════════ */

/* ── Split-text word reveal ────────────────────────────────── */
.ay-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1),
              transform .7s cubic-bezier(.16, 1, .3, 1);
}
.ay-word.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Card-flip reveal ──────────────────────────────────────── */
@keyframes ay-card-flip {
  from { transform: perspective(800px) rotateY(90deg); opacity: 0; }
  to   { transform: perspective(800px) rotateY(0deg); opacity: 1; }
}
.ay-flip-card {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  opacity: 0;
  transform: perspective(800px) rotateY(90deg);
  transition: transform .72s cubic-bezier(.16, 1, .3, 1),
              opacity .72s cubic-bezier(.16, 1, .3, 1);
}
.ay-flip-card.visible {
  opacity: 1;
  transform: perspective(800px) rotateY(0deg);
}

/* ── Gold shimmer on buttons ───────────────────────────────── */
@keyframes ay-shimmer {
  0%   { transform: translateX(-100%) skewX(-18deg); }
  100% { transform: translateX(200%) skewX(-18deg); }
}
.ay-shimmer-btn {
  position: relative;
  overflow: hidden;
}
.ay-shimmer-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(212, 175, 55, .22) 40%,
    rgba(212, 175, 55, .35) 50%,
    rgba(212, 175, 55, .22) 60%,
    transparent 80%
  );
  transform: translateX(-100%) skewX(-18deg);
  pointer-events: none;
}
.ay-shimmer-btn:hover::after {
  animation: ay-shimmer .85s ease forwards;
}

/* ── Roulette spin decoration ──────────────────────────────── */
@keyframes ay-roulette-spin {
  from { transform: translate(50%, 50%) rotate(0deg); }
  to   { transform: translate(50%, 50%) rotate(360deg); }
}
.ay-roulette-ring {
  position: absolute;
  right: 6%;
  bottom: 12%;
  width: clamp(180px, 22vw, 340px);
  height: clamp(180px, 22vw, 340px);
  border: 2px solid rgba(212, 175, 55, .18);
  border-top-color: rgba(212, 175, 55, .45);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: ay-roulette-spin 20s linear infinite;
}

/* ── Art deco corners ──────────────────────────────────────── */
.ay-deco-corner { position: relative; }
.ay-deco-corner::before,
.ay-deco-corner::after {
  content: "";
  position: absolute;
  width: clamp(36px, 5vw, 72px);
  height: clamp(36px, 5vw, 72px);
  pointer-events: none;
  z-index: 1;
}
.ay-deco-corner::before {
  top: clamp(12px, 2vw, 28px);
  left: clamp(12px, 2vw, 28px);
  border-top: 2px solid var(--ay-gold);
  border-left: 2px solid var(--ay-gold);
}
.ay-deco-corner::after {
  bottom: clamp(12px, 2vw, 28px);
  right: clamp(12px, 2vw, 28px);
  border-bottom: 2px solid var(--ay-gold);
  border-right: 2px solid var(--ay-gold);
}

/* ── 3D tilt card ──────────────────────────────────────────── */
.ay-tilt-card {
  transition: transform .25s ease;
  will-change: transform;
}

/* ── Staggered grid reveals ────────────────────────────────── */
.ay-stagger-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1),
              transform .6s cubic-bezier(.16, 1, .3, 1);
}
.ay-stagger-item.ay-stagger-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Custom scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: var(--ay-ivory);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--ay-primary), var(--ay-gold-dark));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--ay-primary-dark), var(--ay-gold));
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--ay-primary) var(--ay-ivory);
}

/* ── Text selection ────────────────────────────────────────── */
::selection {
  background: var(--ay-primary);
  color: var(--ay-gold);
}

/* ── Noise grain overlay ───────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: multiply;
}

/* ── Reduced-motion override ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ay-word,
  .ay-flip-card,
  .ay-stagger-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .ay-roulette-ring {
    animation: none !important;
  }
  .ay-shimmer-btn:hover::after {
    animation: none !important;
  }
  .ay-tilt-card {
    transition: none !important;
  }
}

/* FAQ section */
.ay-faqs { border-top: 1px solid var(--ay-deep-line); padding-top: 2rem; }
.ay-faqs h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.ay-faq-item { border-bottom: 1px solid var(--ay-deep-line); }
.ay-faq-item summary { padding: .9rem 0; cursor: pointer; font-weight: 600; font-size: .95rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.ay-faq-item summary::after { content: '+'; font-size: 1.1rem; color: var(--ay-muted); flex-shrink: 0; }
.ay-faq-item[open] summary::after { content: '−'; }
.ay-faq-body { padding: 0 0 1rem; color: var(--ay-muted); font-size: .9rem; line-height: 1.6; }
