/* Home: direct action hierarchy and semantic trip states */
.home-hero {
  min-height:228px;
  padding:24px 20px 86px;
  overflow:hidden;
  --hero-title-margin-bottom:35px;
  background-color:var(--ink);
  background-image:url('../assets/home-hero-osaka-festival-v2.png');
  background-position:bottom;
  background-size:cover;
  background-repeat:no-repeat;
}

.home-hero::after {
  content:'';
  position:absolute;
  z-index:0;
  right:-8px;
  bottom:-10px;
  left:-8px;
  height:58px;
  pointer-events:none;
  background:linear-gradient(to bottom,rgba(16,24,40,0),var(--ink) 76%);
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
  -webkit-mask-image:linear-gradient(to bottom,transparent,#000 42%);
  mask-image:linear-gradient(to bottom,transparent,#000 42%);
}

.home-hero h1 { font-size:clamp(58px,15vw,80px); }

.home-hero .hero-bottom { justify-content:flex-end; }

.home-hero .date-stamp {
  padding:7px 8px 6px 10px;
  border:1px solid rgba(255,211,78,.52);
  background:rgba(16,24,40,.9);
  box-shadow:0 6px 18px rgba(0,0,0,.24);
  text-shadow:0 2px 10px rgba(0,0,0,.75);
}

.home-hero ~ .action-card h2,
.home-hero ~ .section h2 {
  letter-spacing:-.035em;
}

.home-hero .hero-bottom p span,
.home-hero .hero-bottom p strong {
  display:block;
}

.home-hero .hero-bottom p strong {
  margin-top:5px;
  color:var(--yellow);
  font:500 .75rem/1.45 'DM Mono',monospace;
  letter-spacing:.025em;
}

.action-card {
  padding-block:clamp(24px,6vw,32px);
}

.action-card > .section-label {
  margin-bottom:var(--space-md);
}

.action-heading {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:var(--space-lg);
  align-items:end;
  margin-bottom:var(--space-xl);
}

.action-heading > div:first-child {
  min-width:0;
}

.action-heading h2 {
  max-width:10ch;
  margin:0;
  line-height:1.08;
}

.home-action-heading {
  grid-template-areas:
    "title count"
    "summary summary";
  column-gap:var(--space-lg);
  row-gap:var(--space-xs);
  margin-bottom:var(--space-lg);
  align-items:center;
}

.home-action-heading h2 {
  grid-area:title;
  max-width:none;
  margin:0;
  font-size:clamp(1.45rem,6vw,2rem);
  line-height:1.08;
  white-space:nowrap;
}

.home-action-heading #actionSummary {
  grid-area:summary;
  max-width:none;
  margin:0;
  font-size:clamp(.6875rem,2.6vw,.8125rem);
  line-height:1.4;
  text-wrap:pretty;
}

.home-action-heading .prep-count { grid-area:count; }

#actionSummary {
  max-width:31ch;
  margin:8px 0 0;
  color:rgba(16,24,40,.72);
  font-size:.8125rem;
  line-height:1.5;
  text-wrap:pretty;
}

.priority-action {
  display:grid;
  grid-template:
    "kicker kicker kicker"
    "body cta arrow" auto / minmax(0,1fr) auto 24px;
  gap:var(--space-md);
  min-height:150px;
  padding:var(--space-lg);
  border:1px solid var(--ink);
  background:var(--yellow);
  color:var(--ink);
  box-shadow:6px 6px 0 var(--ink);
  text-decoration:none;
  transition:box-shadow .18s ease-out, transform .18s ease-out;
}

.home-priority-action {
  grid-template:"body cta arrow" auto / minmax(0,1fr) auto 24px;
  align-items:center;
  min-height:84px;
  padding:var(--space-md) var(--space-lg);
  gap:var(--space-sm);
}

.home-priority-action .priority-copy,
.home-priority-action .priority-cta,
.home-priority-action > .arrow {
  align-self:center;
}

.priority-kicker {
  grid-area:kicker;
  display:flex;
  align-items:center;
  gap:9px;
  font:500 var(--text-caption)/1.4 'DM Mono',monospace;
  letter-spacing:.06em;
}

.priority-kicker::before {
  content:'';
  width:10px;
  height:10px;
  flex:0 0 auto;
  background:var(--coral);
  border:1px solid var(--ink);
  transform:rotate(45deg);
}

.priority-body,
.priority-copy {
  grid-area:body;
  align-self:end;
  min-width:0;
}

.priority-body b,
.priority-body small,
.priority-copy strong,
.priority-copy small {
  display:block;
}

.priority-body b,
.priority-copy strong {
  font-size:1.2rem;
  line-height:1.3;
  letter-spacing:-.025em;
  text-wrap:balance;
}

.priority-body small,
.priority-copy small {
  max-width:31ch;
  margin-top:var(--space-xs);
  color:rgba(16,24,40,.72);
  font-size:.8125rem;
  line-height:1.5;
}

.priority-cta {
  grid-area:cta;
  align-self:end;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:8px 13px;
  border:1px solid var(--ink);
  background:var(--coral);
  font-size:.8125rem;
  font-weight:800;
  line-height:1.2;
  white-space:nowrap;
}

.priority-action > .arrow {
  grid-area:arrow;
  align-self:end;
  display:grid;
  place-items:center;
  width:24px;
  min-height:44px;
  font-size:1.25rem;
}

.priority-action:focus-visible {
  outline:3px solid var(--ink);
  outline-offset:5px;
}

.priority-action:active {
  box-shadow:2px 2px 0 var(--ink);
  transform:translate(4px,4px);
}

.prep-more {
  margin-top:var(--space-lg);
  border-top:1px solid rgba(16,24,40,.32);
  border-bottom:1px solid rgba(16,24,40,.32);
}

.prep-more summary {
  position:relative;
  display:flex;
  align-items:center;
  min-height:58px;
  padding:10px 44px 10px 0;
  cursor:pointer;
  list-style:none;
  font-size:.9375rem;
  font-weight:800;
  line-height:1.4;
}

.prep-more summary::-webkit-details-marker {
  display:none;
}

.prep-more summary::after {
  content:'+';
  position:absolute;
  right:0;
  top:50%;
  display:grid;
  place-items:center;
  width:32px;
  height:32px;
  border:1px solid var(--ink);
  background:var(--paper);
  font:500 1.1rem/1 'DM Mono',monospace;
  transform:translateY(-50%);
}

.prep-more[open] summary::after {
  content:'−';
  background:var(--yellow);
}

.prep-more summary:focus-visible {
  outline:2px solid var(--ink);
  outline-offset:-2px;
}

.prep-more .prep-list {
  margin:0;
  border-top:1px solid rgba(16,24,40,.28);
  border-bottom:0;
}

.prep-more .prep-list a {
  grid-template-columns:24px minmax(0,1fr) auto 24px;
  gap:var(--space-sm);
  min-height:74px;
  padding:13px 2px;
  border-bottom:1px solid rgba(16,24,40,.2);
}

.prep-more .prep-list a:last-child {
  border-bottom:0;
}

.prep-more .prep-list a > span:not(.prep-action) {
  min-width:0;
}

.prep-more .prep-list .prep-no {
  color:rgba(16,24,40,.68);
  font:500 .6875rem/1 'DM Mono',monospace;
}

.prep-more .prep-list b {
  font-size:.9375rem;
  line-height:1.4;
}

.prep-more .prep-list small {
  margin-top:5px;
  color:rgba(16,24,40,.7);
  font-size:.75rem;
  line-height:1.45;
}

.prep-action,
.prep-more .prep-list em {
  display:inline-flex;
