/* Public site stylesheet — shared byte-for-byte between the Canvas preview
   and the static build (PDF 08: "Canvas・Preview・Static build は同じ schema
   から描画する"). Theme colors/fonts arrive as CSS custom properties set by
   theme-tokens.mjs#themeCssVars() on .ax-site[data-theme]. No editor-only
   affordance lives here — see editor.css for that layer. */

.ax-site {
  font-family: var(--ax-body-font);
  color: var(--ax-ink);
  background: var(--ax-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.ax-site * { box-sizing: border-box; }
.ax-site img { max-width: 100%; display: block; }
.ax-site h1, .ax-site h2, .ax-site h3 { font-family: var(--ax-heading-font); line-height: 1.25; margin: 0 0 .4em; font-weight: 700; }
.ax-site p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

.ax-page { max-width: 1120px; margin: 0 auto; padding: 0 24px; overflow-x: hidden; }
.ax-section { padding: 64px 0; }
.ax-section.ax-tone-dark { background: #14141a; color: #f4f4f6; }
.ax-section.ax-density-compact { padding: 36px 0; }
.ax-section.ax-density-spacious { padding: 104px 0; }
/* Per-section text size (all viewports). `em` in font-size is relative to
   the PARENT's size, not the element's own would-be value, so a generic
   `font-size: calc(1em * var(...))` silently collapses every heading to
   ~16px * scale instead of scaling its actual clamp()'d size — this
   restates each heading's own base formula explicitly so the multiply is
   against the right number. A mobile-only override further down wins at
   <=860px if both are set. */
.ax-section[style*="--ax-text-scale"] .ax-hero-heading { font-size: calc(clamp(32px, 5vw, 56px) * var(--ax-text-scale)); }
.ax-section[style*="--ax-text-scale"] .ax-hero-heading-xl { font-size: calc(clamp(40px, 7vw, 76px) * var(--ax-text-scale)); }
.ax-section[style*="--ax-text-scale"] .ax-hero-heading-display { font-size: calc(clamp(36px, 8vw, 88px) * var(--ax-text-scale)); }
.ax-section[style*="--ax-text-scale"] :is(.ax-about-heading, .ax-menu-heading, .ax-gallery-heading, .ax-events-heading, .ax-news-heading, .ax-reviews-heading, .ax-access-heading, .ax-cta-heading) { font-size: calc(clamp(26px, 3.2vw, 34px) * var(--ax-text-scale)); }
.ax-section[style*="--ax-text-scale"] .ax-hero-body { font-size: calc(17px * var(--ax-text-scale)); }

.ax-placeholder { color: var(--ax-muted); font-style: italic; }

/* Image + empty-image placeholder — never collapses layout even with no photo yet (FIX 03). */
.ax-image { position: relative; width: 100%; aspect-ratio: var(--ax-ratio, 16/9); overflow: hidden; border-radius: var(--ax-radius); background: linear-gradient(135deg, color-mix(in srgb, var(--ax-primary) 14%, var(--ax-surface)), color-mix(in srgb, var(--ax-accent) 18%, var(--ax-surface))); }
.ax-image img { width: 100%; height: 100%; object-fit: cover; object-position: var(--ax-focal, 50% 50%); transition: transform .4s ease; }
.ax-image:hover img { transform: scale(1.05); }
.ax-image-empty { display: flex; align-items: center; justify-content: center; border: 1px dashed color-mix(in srgb, var(--ax-ink) 25%, transparent); }
.ax-image-cta { font-size: 13px; color: var(--ax-muted); }

.ax-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; border-radius: var(--ax-radius); font-weight: 700; text-decoration: none; cursor: pointer; border: 1px solid transparent; min-height: 44px; font-family: var(--ax-body-font); transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease, background-color .15s ease; }
.ax-btn-primary { background: var(--ax-primary); color: var(--ax-on-primary); }
.ax-btn-primary:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 16px color-mix(in srgb, var(--ax-primary) 35%, transparent); }
.ax-btn-primary:active { transform: translateY(0); opacity: 1; box-shadow: none; }
.ax-btn-ghost { background: transparent; border-color: currentColor; }
.ax-btn-ghost:hover { background: color-mix(in srgb, currentColor 8%, transparent); }
.ax-btn-ghost:active { background: color-mix(in srgb, currentColor 16%, transparent); }
.ax-btn-sm { padding: 8px 14px; min-height: 36px; font-size: 14px; }
.ax-btn-lg { padding: 16px 28px; font-size: 17px; }

/* ---------- Header ---------- */
.ax-type-header { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--ax-bg) 92%, transparent); backdrop-filter: blur(6px); border-bottom: 1px solid var(--ax-border); }
.ax-header { max-width: 1120px; margin: 0 auto; padding: 10px 24px; display: flex; align-items: center; gap: 20px; }
.ax-header-brand-group { display: inline-flex; align-items: center; gap: 10px; min-width: 32px; flex-shrink: 1; }
.ax-header-logo { height: 32px; width: auto; flex-shrink: 0; object-fit: contain; }
.ax-header-brand { font-family: var(--ax-heading-font); font-weight: 700; font-size: 19px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.ax-header-nav { display: flex; gap: 18px; flex: 1; min-width: 0; overflow: hidden; }
.ax-header-link { text-decoration: none; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; min-height: 44px; white-space: nowrap; transition: color .15s ease; }
.ax-header-link:hover { color: var(--ax-accent); }
.ax-header .ax-btn { flex-shrink: 2; min-width: 44px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ax-header-burger { display: none; flex-shrink: 0; background: none; border: 0; border-radius: var(--ax-radius); font-size: 20px; min-width: 44px; min-height: 44px; cursor: pointer; transition: background-color .15s ease; }
.ax-header-burger:hover { background: color-mix(in srgb, var(--ax-ink) 8%, transparent); }
.ax-header--centered { justify-content: center; flex-direction: column; text-align: center; gap: 6px; }
.ax-header--centered .ax-header-nav { flex: none; }
.ax-header--minimal .ax-header-nav { display: none; }

/* ---------- Footer ---------- */
.ax-type-footer { border-top: 1px solid var(--ax-border); padding: 40px 24px; }
.ax-footer { max-width: 1120px; margin: 0 auto; }
.ax-footer-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-bottom: 24px; }
.ax-footer-col-title { font-weight: 700; margin-bottom: 8px; }
.ax-footer-link, .ax-footer-social-item { display: flex; align-items: center; min-height: 44px; text-decoration: none; color: var(--ax-muted); font-size: 14px; transition: color .15s ease; }
.ax-footer-link:hover, .ax-footer-social-item:hover { color: var(--ax-accent); }
.ax-footer-social { display: flex; gap: 14px; margin: 10px 0; }
.ax-footer-links-row { display: flex; flex-wrap: wrap; gap: 0 20px; margin-bottom: 4px; }
.ax-footer-copyright { color: var(--ax-muted); font-size: 13px; margin: 0; }
.ax-footer-tagline { font-family: var(--ax-heading-font); font-size: 20px; margin-bottom: 12px; }

/* ---------- Hero ---------- */
.ax-hero-eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--ax-accent); font-weight: 700; }
.ax-hero-heading { font-size: clamp(32px, 5vw, 56px); }
.ax-hero-heading-xl { font-size: clamp(40px, 7vw, 76px); }
.ax-hero-heading-display { font-size: clamp(36px, 8vw, 88px); text-transform: uppercase; }
.ax-hero-body { color: var(--ax-muted); font-size: 17px; max-width: 46em; }
.ax-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.ax-hero--media, .ax-hero--split, .ax-hero--product { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.ax-hero--editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; }
.ax-hero-copy-wide { max-width: 640px; }
.ax-hero--centered, .ax-hero--minimal { text-align: center; }
.ax-hero-copy-center { max-width: 720px; margin: 0 auto; }
.ax-hero-copy-center .ax-hero-actions { justify-content: center; }
.ax-hero-media-band { margin-top: 32px; }
.ax-hero--event, .ax-hero--music { position: relative; padding: 0; }
.ax-hero-media-full { border-radius: 0; aspect-ratio: 16/9; }
.ax-hero-copy-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,0) 60%); color: #fff; }
.ax-hero-copy-overlay .ax-hero-body { color: rgba(255,255,255,.85); }
.ax-hero-copy-loud .ax-hero-heading { color: var(--ax-accent); }
.ax-hero-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ---------- About ---------- */
/* One consistent responsive scale for every section heading below the Hero
   — these were five different fixed pixel values (26/28/30) with no
   rationale and no mobile scaling, which read as uneven/unpolished. */
.ax-about-heading, .ax-menu-heading, .ax-gallery-heading, .ax-events-heading,
.ax-news-heading, .ax-reviews-heading, .ax-access-heading, .ax-cta-heading {
  font-size: clamp(26px, 3.2vw, 34px);
}
.ax-about-body { color: var(--ax-muted); max-width: 60em; }
.ax-about--image-side { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.ax-about--image-side.ax-align-right { direction: rtl; }
.ax-about--image-side.ax-align-right > * { direction: ltr; }
.ax-about--quote { text-align: center; max-width: 720px; margin: 0 auto; }
.ax-about-quote-text { font-family: var(--ax-heading-font); font-size: 28px; }
.ax-about-quote-attr { color: var(--ax-muted); }
.ax-about--numbers { display: grid; gap: 32px; }
.ax-about-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; text-align: center; }
.ax-about-stat-value { font-family: var(--ax-heading-font); font-size: 40px; color: var(--ax-accent); margin: 0; }
.ax-about-stat-label { color: var(--ax-muted); margin: 0; font-size: 14px; }
.ax-about-timeline { display: grid; gap: 18px; margin-top: 20px; }
.ax-about-milestone { display: flex; gap: 20px; border-left: 2px solid var(--ax-accent); padding-left: 16px; }
.ax-about-milestone-year { font-weight: 700; min-width: 4em; margin: 0; }
.ax-about-milestone-text { margin: 0; color: var(--ax-muted); }

/* ---------- Menu / Services ---------- */
.ax-menu-heading { margin-bottom: 24px; }
.ax-menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.ax-menu-grid .ax-menu-item { background: var(--ax-surface); border: 1px solid var(--ax-border); border-radius: var(--ax-radius); padding: 12px; transition: transform .18s ease, box-shadow .18s ease; }
.ax-menu-grid .ax-menu-item:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.1); }
.ax-menu-item-media { margin-bottom: 12px; }
.ax-menu-item-name { font-size: 17px; margin: 0 0 4px; }
.ax-menu-item-desc { color: var(--ax-muted); font-size: 14px; margin: 0 0 6px; }
.ax-menu-item-price { font-weight: 700; color: var(--ax-accent); margin: 0; }
.ax-menu-list { display: grid; gap: 14px; }
.ax-menu-row { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px dashed var(--ax-border); padding-bottom: 12px; }
.ax-menu-row-name { font-weight: 700; margin: 0; }
.ax-menu-row-desc { color: var(--ax-muted); font-size: 13px; margin: 2px 0 0; }
.ax-menu-row-price { font-weight: 700; white-space: nowrap; margin: 0; }
.ax-menu-tabs { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.ax-menu-tab { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--ax-border); font-size: 13px; font-weight: 600; }
.ax-menu--featured .ax-menu-featured-main { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; margin-bottom: 24px; }
.ax-menu-compact-list { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.ax-menu-image-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.ax-menu-tile-caption { font-size: 13px; font-weight: 600; margin: 8px 0 2px; }

/* ---------- Gallery ---------- */
.ax-gallery-heading { margin-bottom: 20px; }
.ax-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.ax-gallery-masonry { columns: 3; column-gap: 12px; }
.ax-gallery-masonry .ax-gallery-tile { margin-bottom: 12px; break-inside: avoid; }
.ax-gallery-carousel { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.ax-gallery-slide { min-width: 320px; scroll-snap-align: start; }
.ax-gallery-editorial { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; }
.ax-gallery-editorial-side { display: grid; gap: 12px; }
.ax-gallery-before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ax-gallery-ba-label { text-align: center; font-weight: 700; margin-top: 8px; }

/* ---------- Events ---------- */
.ax-events-heading { margin-bottom: 20px; }
.ax-events-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.ax-events-card { background: var(--ax-surface); border: 1px solid var(--ax-border); border-radius: var(--ax-radius); padding: 12px; transition: transform .18s ease, box-shadow .18s ease; }
.ax-events-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.1); }
.ax-events-card-body { padding-top: 12px; }
.ax-events-date { font-weight: 700; color: var(--ax-accent); margin: 0 0 4px; font-size: 13px; }
.ax-events-time { color: var(--ax-muted); font-size: 13px; margin: 0; }
.ax-events-title { font-size: 18px; margin: 4px 0; }
.ax-events-title-lg { font-size: 28px; }
.ax-events-desc { color: var(--ax-muted); font-size: 14px; }
.ax-events-badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; background: var(--ax-accent); color: var(--ax-on-primary); }
.ax-events-badge-past { background: var(--ax-border); color: var(--ax-muted); }
.ax-events-schedule { display: grid; gap: 16px; }
.ax-events-row { display: grid; grid-template-columns: 140px 1fr auto; gap: 16px; align-items: center; border-bottom: 1px dashed var(--ax-border); padding-bottom: 14px; }
.ax-events--featured .ax-events-featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.ax-events-calendar { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.ax-events-cal-cell { border: 1px solid var(--ax-border); border-radius: var(--ax-radius); padding: 14px; background: var(--ax-surface); transition: transform .18s ease, box-shadow .18s ease; }
.ax-events-cal-cell:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.1); }
.ax-events-cal-date { font-weight: 700; margin: 0 0 4px; }
.ax-events-cal-title { margin: 0; color: var(--ax-muted); font-size: 13px; }
.ax-events-compact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }

/* ---------- News ---------- */
.ax-news-heading { margin-bottom: 18px; }
.ax-news-card { background: var(--ax-surface); border: 1px solid var(--ax-border); border-radius: var(--ax-radius); padding: 12px; transition: transform .18s ease, box-shadow .18s ease; }
.ax-news-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.1); }
.ax-news-list { display: grid; gap: 12px; }
.ax-news-row { display: flex; gap: 16px; border-bottom: 1px dashed var(--ax-border); padding-bottom: 10px; }
.ax-news-date { color: var(--ax-muted); font-size: 13px; white-space: nowrap; margin: 0; }
.ax-news-title { font-size: 15px; font-weight: 600; margin: 0; }
.ax-news-title-lg { font-size: 26px; }
.ax-news-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.ax-news-body { color: var(--ax-muted); font-size: 14px; }
.ax-news-minimal-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.ax-news--featured-list { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }

/* ---------- Reviews ---------- */
.ax-reviews-heading { margin-bottom: 20px; }
.ax-reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.ax-reviews-quote { margin: 0; padding: 20px; border: 1px solid var(--ax-border); border-radius: var(--ax-radius); background: var(--ax-surface); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.ax-reviews-quote:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.1); border-color: color-mix(in srgb, var(--ax-accent) 40%, var(--ax-border)); }
.ax-reviews-quote-text { font-size: 15px; }
.ax-reviews-quote-lg { font-family: var(--ax-heading-font); font-size: 26px; }
.ax-reviews-author { color: var(--ax-muted); font-size: 13px; }
.ax-reviews-stars { color: var(--ax-accent); letter-spacing: 2px; margin: 0 0 8px; }
.ax-reviews--editorial { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; align-items: center; }

/* ---------- Access / Hours ---------- */
.ax-access-heading { margin-bottom: 16px; }
.ax-access--map-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.ax-access-map { aspect-ratio: 4/3; border-radius: var(--ax-radius); overflow: hidden; background: var(--ax-surface); border: 1px solid var(--ax-border); }
.ax-access-map iframe { width: 100%; height: 100%; border: 0; }
.ax-access-map-empty { display: flex; align-items: center; justify-content: center; }
.ax-access-hours-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--ax-border); }
.ax-access-hours dt, .ax-access-hours dd { margin: 0; font-weight: 600; }
.ax-access-address, .ax-access-phone { margin: 0 0 6px; }
.ax-access-card { background: var(--ax-surface); border: 1px solid var(--ax-border); border-radius: var(--ax-radius); padding: 28px; max-width: 480px; }
.ax-access-locations { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.ax-access-location { border: 1px solid var(--ax-border); border-radius: var(--ax-radius); padding: 20px; background: var(--ax-surface); transition: transform .18s ease, box-shadow .18s ease; }
.ax-access-location:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.1); }
.ax-access-location-name { margin: 0 0 6px; }

/* ---------- Contact / CTA ---------- */
.ax-cta { text-align: center; }

.ax-cta-body { color: var(--ax-muted); max-width: 42em; margin: 0 auto 16px; }
.ax-cta-note { color: var(--ax-muted); font-size: 13px; margin-top: 10px; }
.ax-cta--form { text-align: left; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.ax-contact-form { display: grid; gap: 12px; }
.ax-contact-form label { font-size: 13px; font-weight: 600; display: grid; gap: 6px; }
.ax-contact-form input, .ax-contact-form textarea { font: inherit; padding: 12px; border-radius: var(--ax-radius); border: 1px solid var(--ax-border); }
.ax-contact-form textarea { min-height: 100px; resize: vertical; }
.ax-contact-form-note { font-size: 12px; color: var(--ax-muted); }
.ax-cta-social { display: flex; gap: 16px; justify-content: center; margin-top: 12px; }
.ax-cta-social-platform { font-weight: 700; }

/* ---------- Mobile (390px baseline; tablet fluid) ---------- */
@media (max-width: 860px) {
  .ax-page { padding: 0 18px; }
  .ax-section { padding: 40px 0; }
  .ax-section.ax-density-compact { padding: 22px 0; }
  .ax-section.ax-density-spacious { padding: 60px 0; }
  .ax-hero--media, .ax-hero--split, .ax-hero--editorial, .ax-hero--product,
  .ax-about--image-side, .ax-about--numbers, .ax-access--map-split,
  .ax-events--featured .ax-events-featured, .ax-news--featured-list,
  .ax-reviews--editorial, .ax-cta--form, .ax-menu--featured .ax-menu-featured-main {
    grid-template-columns: 1fr !important;
  }
  .ax-menu-grid, .ax-news-grid, .ax-events-grid, .ax-reviews-grid, .ax-gallery-grid,
  .ax-about-stats, .ax-access-locations, .ax-events-calendar, .ax-menu-image-grid, .ax-footer-columns {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .ax-gallery-masonry { columns: 2; }
  .ax-header-nav { display: none; }
  .ax-header-burger { display: inline-flex; align-items: center; justify-content: center; }
  .ax-header.ax-nav-open .ax-header-nav { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--ax-bg); flex-direction: column; padding: 16px 24px; border-bottom: 1px solid var(--ax-border); }
  .ax-events-row { grid-template-columns: 1fr; }
  .ax-btn { width: 100%; }
  .ax-header .ax-btn { width: auto; }
  .ax-hero-actions { flex-direction: column; }
  .ax-hero-actions .ax-btn { width: 100%; }
}
@media (max-width: 540px) {
  .ax-menu-grid, .ax-news-grid, .ax-events-grid, .ax-reviews-grid, .ax-gallery-grid,
  .ax-about-stats, .ax-access-locations, .ax-events-calendar, .ax-menu-image-grid, .ax-footer-columns {
    grid-template-columns: 1fr;
  }
  .ax-gallery-masonry { columns: 1; }
  .ax-hero-heading, .ax-hero-heading-xl, .ax-hero-heading-display { font-size: clamp(28px, 9vw, 40px); }
}

/* Section-level mobile overrides driven by responsive.mobile (schema). */
.ax-hide-mobile { }
@media (max-width: 860px) {
  .ax-hide-mobile { display: none !important; }
  .ax-section[style*="--ax-m-order"] { order: var(--ax-m-order); }
  .ax-page { display: flex; flex-direction: column; }
  /* Same explicit-base fix as the desktop --ax-text-scale rule above — see
     that comment for why a plain `1em * var()` doesn't work here. */
  .ax-section[style*="--ax-m-text-scale"] .ax-hero-heading { font-size: calc(clamp(32px, 5vw, 56px) * var(--ax-m-text-scale)); }
  .ax-section[style*="--ax-m-text-scale"] .ax-hero-heading-xl { font-size: calc(clamp(40px, 7vw, 76px) * var(--ax-m-text-scale)); }
  .ax-section[style*="--ax-m-text-scale"] .ax-hero-heading-display { font-size: calc(clamp(36px, 8vw, 88px) * var(--ax-m-text-scale)); }
  .ax-section[style*="--ax-m-text-scale"] :is(.ax-about-heading, .ax-menu-heading, .ax-gallery-heading, .ax-events-heading, .ax-news-heading, .ax-reviews-heading, .ax-access-heading, .ax-cta-heading) { font-size: calc(clamp(26px, 3.2vw, 34px) * var(--ax-m-text-scale)); }
  .ax-section[style*="--ax-m-text-scale"] .ax-hero-body { font-size: calc(17px * var(--ax-m-text-scale)); }
}

/* Motion presets — see app/site-motion.js. 150-260ms, reduced-motion aware. */
.ax-motion { opacity: 0; transform: translateY(12px); transition: opacity .22s ease, transform .22s ease; }
.ax-motion.ax-motion-in { opacity: 1; transform: none; }
.ax-motion-scale { transform: scale(.96); }
.ax-motion-scale.ax-motion-in { transform: none; }
.ax-motion-slide { transform: translateX(24px); }
.ax-motion-slide.ax-motion-in { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .ax-motion { opacity: 1 !important; transform: none !important; transition: none !important; }
  .ax-motion-marquee-host .ax-gallery-carousel, .ax-motion-marquee-host .ax-menu-compact-list { animation: none !important; }
}
.ax-motion-marquee-host .ax-gallery-carousel { flex-wrap: nowrap; animation: ax-marquee 22s linear infinite; }
.ax-motion-marquee-host .ax-menu-compact-list { flex-wrap: nowrap; animation: ax-marquee 18s linear infinite; }
@keyframes ax-marquee { from { transform: translateX(0); } to { transform: translateX(-30%); } }
