/* axx, card mosaic archetype, warm cream-pastel */

:root {
 --axx-bg: #FFF6F0;
 --axx-bg-card: #FFFFFF;
 --axx-bg-cream: #FBE9DA;
 --axx-fg: #3D2818;
 --axx-muted: #6D5841;
 --axx-accent: #B85630;
 --axx-accent-dim: #8A3F22;
 --axx-accent-bright: #E07856;
 --axx-gold: #D4A85F;
 --axx-border: #F0DCC9;
 --axx-shadow-soft: 0 2px 8px rgba(61, 40, 24, 0.06);
 --axx-shadow-pop: 0 6px 24px rgba(224, 120, 86, 0.14);

 --axx-font-body: 'Nunito', system-ui, sans-serif;
 --axx-font-display: 'Quicksand', system-ui, sans-serif;

 --axx-radius-sm: 8px;
 --axx-radius-md: 16px;
 --axx-radius-lg: 24px;

 --axx-content-width: 1120px;
}

* { box-sizing: border-box; }

html, body {
 margin: 0;
 padding: 0;
 font-family: var(--axx-font-body);
 font-size: 17px;
 line-height: 1.6;
 color: var(--axx-fg);
 background: var(--axx-bg);
 -webkit-font-smoothing: antialiased;
}

a {
 color: var(--axx-accent);
 text-decoration: none;
}
a:hover { color: var(--axx-accent-dim); }

.axx-container {
 max-width: var(--axx-content-width);
 margin: 0 auto;
 padding: 0 24px;
}

/* === HEADER === */
.axx-header {
 background: var(--axx-bg);
 padding: 20px 0;
 position: sticky;
 top: 0;
 z-index: 10;
 border-bottom: 1px solid var(--axx-border);
}
.axx-header-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 flex-wrap: wrap;
}
.axx-brand {
 display: inline-flex;
 align-items: center;
 gap: 12px;
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: 1.15rem;
 color: var(--axx-fg);
 text-decoration: none;
}
.axx-brand-blob {
 width: 36px;
 height: 36px;
 background: linear-gradient(135deg, var(--axx-accent-bright) 0%, var(--axx-gold) 100%);
 border-radius: 50% 50% 50% 30%;
 transform: rotate(-15deg);
 box-shadow: var(--axx-shadow-pop);
}
.axx-nav {
 display: flex;
 gap: 28px;
 flex-wrap: wrap;
 font-family: var(--axx-font-display);
 font-weight: 600;
 font-size: 1rem;
}
.axx-nav a {
 color: var(--axx-fg);
 padding: 6px 0;
 border-bottom: 2px solid transparent;
 transition: border-color 200ms ease;
}
.axx-nav a:hover { border-bottom-color: var(--axx-accent); }

/* === HERO === */
.axx-hero {
 padding: 80px 24px 56px;
 max-width: 900px;
 text-align: center;
}
.axx-eyebrow {
 font-family: var(--axx-font-display);
 font-weight: 600;
 font-size: 0.95rem;
 color: var(--axx-accent);
 margin: 0 0 16px;
}
.axx-h1 {
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: clamp(2.4rem, 5vw, 4rem);
 line-height: 1.1;
 letter-spacing: -0.02em;
 margin: 0 0 24px;
 color: var(--axx-fg);
}
.axx-h1 em {
 font-style: italic;
 font-weight: 700;
 color: var(--axx-accent);
}
.axx-deck {
 font-size: 1.2rem;
 line-height: 1.6;
 color: var(--axx-fg);
 max-width: 680px;
 margin: 0 auto 36px;
 opacity: 0.85;
}
.axx-hero-cta {
 display: inline-flex;
 gap: 16px;
 flex-wrap: wrap;
 justify-content: center;
}

/* === BUTTONS === */
.axx-button {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 14px 24px;
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: 1rem;
 border-radius: var(--axx-radius-lg);
 text-decoration: none;
 transition: transform 150ms ease, box-shadow 240ms ease;
}
.axx-button-primary {
 background: var(--axx-accent);
 color: #fff;
 box-shadow: var(--axx-shadow-pop);
}
.axx-button-primary:hover {
 transform: translateY(-2px);
 color: #fff;
 background: var(--axx-accent-dim);
}
.axx-button-ghost {
 background: transparent;
 color: var(--axx-fg);
 border: 2px solid var(--axx-border);
}
.axx-button-ghost:hover {
 border-color: var(--axx-accent);
 color: var(--axx-fg);
}

/* === SECTION === */
.axx-h2 {
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: clamp(1.8rem, 3.5vw, 2.6rem);
 line-height: 1.15;
 margin: 0 0 12px;
 color: var(--axx-fg);
 letter-spacing: -0.015em;
}
.axx-section-deck {
 font-size: 1.1rem;
 color: var(--axx-fg);
 opacity: 0.75;
 margin: 0 0 36px;
 max-width: 620px;
}

.axx-picks {
 padding: 32px 24px 80px;
}

/* === CARD GRID === */
.axx-card-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
 gap: 28px;
}
.axx-card {
 background: var(--axx-bg-card);
 border-radius: var(--axx-radius-md);
 overflow: hidden;
 box-shadow: var(--axx-shadow-soft);
 transition: transform 240ms ease, box-shadow 240ms ease;
 display: flex;
 flex-direction: column;
 position: relative;
}
.axx-card:hover {
 transform: translateY(-4px);
 box-shadow: var(--axx-shadow-pop);
}
.axx-card-feature {
 grid-column: span 2;
 flex-direction: row;
}
@media (max-width: 760px) {
 .axx-card-feature {
 grid-column: span 1;
 flex-direction: column;
 }
}

.axx-card-thumb {
 height: 200px;
 background: linear-gradient(135deg, var(--axx-accent-bright) 0%, var(--axx-gold) 100%);
 position: relative;
}
.axx-card-feature .axx-card-thumb {
 flex: 0 0 280px;
 height: auto;
 min-height: 320px;
}
@media (max-width: 760px) {
 .axx-card-feature .axx-card-thumb { flex: 0 0 200px; min-height: 200px; }
}
.axx-thumb-candy { background: linear-gradient(135deg, #FFB088 0%, #E07856 50%, #C95C40 100%); }
.axx-thumb-replika { background: linear-gradient(135deg, #A4D4E8 0%, #6FAAC8 100%); }
.axx-thumb-nomi { background: linear-gradient(135deg, #C9B8D8 0%, #9080A8 100%); }
.axx-thumb-janitor { background: linear-gradient(135deg, #F4D58A 0%, #D4A85F 100%); }
.axx-thumb-character { background: linear-gradient(135deg, #FFD8A0 0%, #F5B080 100%); }

.axx-card-body {
 padding: 24px;
 display: flex;
 flex-direction: column;
 flex: 1;
}
.axx-card-row {
 display: flex;
 align-items: baseline;
 justify-content: space-between;
 gap: 12px;
 margin-bottom: 12px;
}
.axx-card-name {
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: 1.5rem;
 color: var(--axx-fg);
 margin: 0;
 letter-spacing: -0.01em;
}
.axx-card-feature .axx-card-name { font-size: 2rem; }
.axx-score {
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: 1.5rem;
 color: var(--axx-accent);
 background: var(--axx-bg-cream);
 padding: 4px 14px;
 border-radius: var(--axx-radius-lg);
 white-space: nowrap;
}
.axx-score-feature {
 font-size: 2rem;
 padding: 6px 18px;
}
.axx-card-deck {
 font-size: 1rem;
 line-height: 1.55;
 color: var(--axx-fg);
 opacity: 0.8;
 margin: 0 0 18px;
 flex: 1;
}
.axx-card-feature .axx-card-deck { font-size: 1.1rem; }
.axx-card-deck em {
 font-style: italic;
 color: var(--axx-accent);
 font-weight: 600;
 opacity: 1;
}
.axx-card-meta {
 list-style: none;
 padding: 0;
 margin: 0 0 18px;
 display: flex;
 flex-wrap: wrap;
 gap: 6px 14px;
 font-size: 0.88rem;
 color: var(--axx-muted);
}
.axx-card-meta li {
 display: inline-flex;
 align-items: center;
}
.axx-card-meta li:not(:last-child)::after {
 content: '·';
 margin-left: 14px;
 color: var(--axx-border);
}
.axx-card-meta strong {
 color: var(--axx-fg);
 font-weight: 600;
}
.axx-card-link {
 font-family: var(--axx-font-display);
 font-weight: 600;
 font-size: 0.95rem;
 color: var(--axx-accent);
 margin-top: auto;
}
.axx-card-link:hover { color: var(--axx-accent-dim); text-decoration: underline; }

.axx-card-badge {
 position: absolute;
 top: 16px;
 left: 16px;
 background: var(--axx-fg);
 color: var(--axx-bg);
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: 0.78rem;
 padding: 6px 12px;
 border-radius: var(--axx-radius-lg);
 letter-spacing: 0.03em;
 z-index: 1;
}
.axx-badge-gold {
 background: var(--axx-gold);
 color: var(--axx-fg);
}

.axx-card-cta {
 background: var(--axx-bg-cream);
 border: 2px dashed var(--axx-accent);
 display: flex;
 align-items: center;
 justify-content: center;
}
.axx-card-cta .axx-card-body {
 text-align: center;
 align-items: center;
}
.axx-card-cta-title {
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: 1.4rem;
 color: var(--axx-fg);
 margin: 0 0 8px;
}
.axx-card-cta-deck {
 font-size: 0.98rem;
 color: var(--axx-fg);
 opacity: 0.8;
 margin: 0 0 18px;
 max-width: 280px;
}

/* === METHODOLOGY === */
.axx-method {
 padding: 48px 24px;
}
.axx-method-card {
 background: var(--axx-bg-cream);
 border-radius: var(--axx-radius-lg);
 padding: 48px 40px;
 text-align: center;
}
.axx-method-card .axx-h2 {
 text-align: center;
}
.axx-method-body {
 font-size: 1.1rem;
 line-height: 1.65;
 max-width: 640px;
 margin: 0 auto 24px;
 color: var(--axx-fg);
 opacity: 0.85;
}

/* === EDITORS === */
.axx-editors {
 padding: 64px 24px 80px;
}
.axx-editor-row {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 32px;
 max-width: 720px;
}
@media (max-width: 600px) {
 .axx-editor-row { grid-template-columns: 1fr; }
}
.axx-editor {
 display: flex;
 align-items: center;
 gap: 16px;
}
.axx-editor-avatar {
 width: 64px;
 height: 64px;
 border-radius: 50%;
 flex-shrink: 0;
 box-shadow: var(--axx-shadow-soft);
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: 1.3rem;
 letter-spacing: 0.02em;
}
.axx-editor-role { font-weight: 400; color: var(--axx-muted); font-size: 0.95rem; }
.axx-avatar-a { background: linear-gradient(135deg, #FFB088 0%, #E07856 100%); }
.axx-avatar-b { background: linear-gradient(135deg, #D4A85F 0%, #F4D58A 100%); }
.axx-editor-name {
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: 1.05rem;
 margin: 0 0 4px;
 color: var(--axx-fg);
}
.axx-editor-bio {
 font-size: 0.92rem;
 color: var(--axx-muted);
 margin: 0;
 line-height: 1.5;
}

/* === FOOTER === */
.axx-footer {
 margin-top: 24px;
 padding: 48px 0 56px;
 background: var(--axx-bg-cream);
}
.axx-footer-mast {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-bottom: 18px;
 flex-wrap: wrap;
 font-family: var(--axx-font-display);
 font-size: 1.05rem;
}
.axx-footer-tag {
 color: var(--axx-muted);
 font-weight: 500;
}
.axx-footer-nav {
 display: flex;
 gap: 20px;
 font-family: var(--axx-font-display);
 font-weight: 600;
 margin-bottom: 18px;
 flex-wrap: wrap;
}
.axx-footer-nav a {
 color: var(--axx-fg);
}
.axx-footer-nav a:hover { color: var(--axx-accent); }
.axx-footer-fine {
 font-size: 0.88rem;
 color: var(--axx-muted);
 margin: 0;
}
.axx-footer-cols {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 28px;
 margin: 24px 0 20px;
}
@media (max-width: 720px) {
 .axx-footer-cols { grid-template-columns: 1fr; gap: 16px; }
}
.axx-footer-col-title {
 font-family: var(--axx-font-display);
 font-size: 1rem;
 font-weight: 700;
 margin: 0 0 10px;
 color: var(--axx-fg);
}
.axx-footer-col a {
 display: block;
 font-size: 0.92rem;
 color: var(--axx-fg);
 text-decoration: none;
 padding: 4px 0;
 border-bottom: 1px solid transparent;
}
.axx-footer-col a:hover {
 color: var(--axx-accent);
 border-bottom-color: var(--axx-accent);
}
.axx-breadcrumb {
 padding: 18px 24px 0;
 font-size: 0.88rem;
 color: var(--axx-muted);
 display: flex;
 gap: 8px;
 flex-wrap: wrap;
 align-items: center;
}
.axx-breadcrumb a {
 color: var(--axx-muted);
 text-decoration: none;
 border-bottom: 1px dotted var(--axx-rule);
}
.axx-breadcrumb a:hover {
 color: var(--axx-accent);
 border-bottom-color: var(--axx-accent);
}
.axx-breadcrumb [aria-current="page"] {
 color: var(--axx-fg);
 font-weight: 600;
}

/* === MODERN CARD v2 with real thumbnail + score circle (Luca review) === */
.axx-card--v2 { position: relative; }
.axx-card-thumb-real {
 display: block;
 position: relative;
 width: 100%;
 aspect-ratio: 16 / 9;
 overflow: hidden;
 background: var(--axx-bg-cream);
}
.axx-card-thumb-real img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 400ms ease; }
.axx-card-thumb-real:hover img { transform: scale(1.05); }
.axx-card-feature .axx-card-thumb-real { aspect-ratio: 4 / 3; }
.axx-card-thumb-real { display: block; height: 200px; overflow: hidden; }
.axx-card-feature .axx-card-thumb-real { flex: 0 0 280px; height: auto; min-height: 320px; }
@media (max-width: 760px) {
 .axx-card-feature .axx-card-thumb-real { flex: 0 0 200px; min-height: 200px; }
}
.axx-card-score-circle {
 position: absolute;
 top: 14px; right: 14px;
 width: 52px; height: 52px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: 1.15rem;
 box-shadow: 0 4px 14px rgba(0,0,0,0.2);
 border: 3px solid #fff;
}
.axx-card-feature .axx-card-score-circle { width: 64px; height: 64px; font-size: 1.4rem; }

/* Mobile: ensure CTA buttons stack on small screens */
@media (max-width: 480px) {
 .axx-hero-cta { flex-direction: column; }
 .axx-hero-cta .axx-button { width: 100%; justify-content: center; }
}

/* === STICKY REVIEW BAR (axx) === */
.axx-sticky-bar {
 position: fixed; top: 0; left: 0; right: 0; z-index: 50;
 background: var(--axx-bg);
 border-bottom: 1px solid var(--axx-border);
 box-shadow: var(--axx-shadow-pop);
 transform: translateY(-100%);
 transition: transform 240ms ease;
 padding: 12px 0;
}
.axx-sticky-bar.is-visible { transform: translateY(0); }
.axx-sticky-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.axx-sticky-name { font-family: var(--axx-font-display); font-weight: 700; font-size: 1.1rem; color: var(--axx-fg); }
.axx-sticky-score {
 display: inline-flex; align-items: center; justify-content: center;
 background: var(--axx-accent); color: #fff;
 padding: 4px 12px; border-radius: var(--axx-radius-lg);
 font-weight: 700; font-size: 0.95rem;
}
.axx-sticky-cta {
 margin-left: auto;
 padding: 10px 22px;
 background: var(--axx-accent);
 color: #fff !important;
 border-radius: var(--axx-radius-lg);
 text-decoration: none;
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: 0.95rem;
 transition: transform 150ms ease;
}
.axx-sticky-cta:hover { transform: translateY(-2px); background: var(--axx-accent-dim); }
.axx-sticky-bar { z-index: 200 !important; }
.axx-header { z-index: 50; }

/* === BODY BLOCKS (Luca round 2) === */
.axx-body-main { padding: 32px 24px 64px; }
.axx-cta-strip {
 display: flex; align-items: center; justify-content: space-between; gap: 18px;
 padding: 24px 26px; margin: 0 0 36px;
 background: var(--axx-bg-card); border-radius: var(--axx-radius-md); box-shadow: var(--axx-shadow-soft);
 flex-wrap: wrap;
}
.axx-cta-strip-label { margin: 0; font-size: 0.88rem; color: var(--axx-muted); font-family: var(--axx-font-display); }
.axx-cta-strip-price { margin: 4px 0 0; font-family: var(--axx-font-display); font-size: 1.4rem; font-weight: 700; color: var(--axx-fg); }
.axx-cta-strip-btn {
 padding: 14px 28px; background: var(--axx-accent); color: #fff !important; text-decoration: none;
 font-family: var(--axx-font-display); font-weight: 700; font-size: 1rem;
 border-radius: var(--axx-radius-lg); box-shadow: var(--axx-shadow-pop);
 transition: transform 150ms ease, background 200ms ease;
}
.axx-cta-strip-btn:hover { transform: translateY(-2px); background: var(--axx-accent-dim); }

.axx-procon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 0 0 40px; }
@media (max-width: 720px) { .axx-procon-grid { grid-template-columns: 1fr; } }
.axx-procon { padding: 22px 24px; background: var(--axx-bg-card); border-radius: var(--axx-radius-md); }
.axx-procon--pros { border-top: 4px solid #2E7D32; }
.axx-procon--cons { border-top: 4px solid #C62828; }
.axx-procon-title { font-family: var(--axx-font-display); font-weight: 700; font-size: 1.15rem; margin: 0 0 12px; color: var(--axx-fg); }
.axx-procon ul { margin: 0; padding-left: 1.2em; line-height: 1.7; color: var(--axx-fg); }
.axx-procon li { margin-bottom: 6px; }

.axx-verdict-block { margin: 0 0 40px; }
.axx-skip-if { padding: 14px 18px; background: var(--axx-bg-cream); border-radius: var(--axx-radius-md); margin: 18px 0 0; color: var(--axx-fg); }

.axx-faq { margin: 0 0 40px; }
.axx-faq-item { border-radius: var(--axx-radius-md); padding: 16px 20px; margin-bottom: 10px; background: var(--axx-bg-card); }
.axx-faq-item summary {
 cursor: pointer; font-family: var(--axx-font-display); font-weight: 700; font-size: 1.05rem;
 color: var(--axx-fg); list-style: none; padding-right: 26px; position: relative;
}
.axx-faq-item summary::-webkit-details-marker { display: none; }
.axx-faq-item summary::after {
 content: '↓'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
 color: var(--axx-accent); transition: transform 200ms ease;
}
.axx-faq-item[open] summary::after { content: '↑'; }
.axx-faq-item p { margin: 12px 0 0; color: var(--axx-fg); opacity: 0.85; line-height: 1.65; }

.axx-related { margin: 0 0 32px; }
.axx-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; margin-top: 18px; }
.axx-related-card {
 display: flex; flex-direction: column; gap: 8px;
 padding: 14px; background: var(--axx-bg-card); border-radius: var(--axx-radius-md);
 text-decoration: none; color: var(--axx-fg); box-shadow: var(--axx-shadow-soft);
 transition: transform 200ms ease, box-shadow 200ms ease;
}
.axx-related-card:hover { transform: translateY(-4px); box-shadow: var(--axx-shadow-pop); }
.axx-related-thumb { display: block; width: 100%; height: 130px; overflow: hidden; border-radius: var(--axx-radius-sm); background: var(--axx-bg-cream); }
.axx-related-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.axx-related-name { font-family: var(--axx-font-display); font-weight: 700; font-size: 1.05rem; }
.axx-related-score {
 display: inline-block; padding: 2px 10px; background: var(--axx-bg-cream);
 color: var(--axx-accent); font-weight: 700; font-size: 0.85rem;
 border-radius: var(--axx-radius-lg); align-self: flex-start;
}
.axx-related-tag { color: var(--axx-muted); font-size: 0.85rem; line-height: 1.4; }

.axx-disclosure { font-size: 0.82rem; color: var(--axx-muted); border-top: 1px dashed var(--axx-border); padding-top: 18px; margin-top: 36px; }

.axx-byline-block {
 margin: 40px auto 24px; padding: 28px 28px;
 background: var(--axx-bg-card); border-radius: var(--axx-radius-md); box-shadow: var(--axx-shadow-soft);
}
.axx-byline-row { display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.axx-byline-avatar {
 flex: 0 0 64px; height: 64px; width: 64px; border-radius: 50% 50% 50% 30%;
 background: linear-gradient(135deg, var(--axx-accent-bright) 0%, var(--axx-gold) 100%);
 color: #fff; display: flex; align-items: center; justify-content: center;
 font-family: var(--axx-font-display); font-weight: 700; font-size: 1.4rem;
}
.axx-byline-body { flex: 1; min-width: 0; }
.axx-byline-name { margin: 0 0 4px; font-family: var(--axx-font-display); font-weight: 700; font-size: 1.15rem; color: var(--axx-fg); }
.axx-byline-role { font-weight: 400; color: var(--axx-muted); font-size: 0.95rem; }
.axx-byline-bio { margin: 0 0 8px; line-height: 1.55; color: var(--axx-fg); }
.axx-byline-meta { margin: 0; font-size: 0.85rem; color: var(--axx-muted); }
.axx-byline-meta a { color: var(--axx-accent); }

/* === BRAND PAGE === */
.axx-brand-hero {
 padding: 56px 24px 24px;
}
.axx-brand-hero-grid {
 display: grid;
 grid-template-columns: 360px 1fr;
 gap: 48px;
 align-items: center;
}
@media (max-width: 760px) {
 .axx-brand-hero-grid { grid-template-columns: 1fr; }
}
.axx-brand-hero-thumb {
 height: 360px;
 border-radius: var(--axx-radius-lg);
 background: linear-gradient(135deg, #FFB088 0%, #E07856 50%, #C95C40 100%);
 box-shadow: var(--axx-shadow-pop);
 overflow: hidden;
 position: relative;
}
.axx-brand-hero-thumb--real {
 background: var(--axx-bg-cream);
}
.axx-brand-hero-thumb--real img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}
.axx-brand-name-big {
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: clamp(3rem, 6vw, 4.5rem);
 line-height: 1;
 letter-spacing: -0.025em;
 margin: 8px 0 16px;
 color: var(--axx-fg);
}
.axx-brand-score-pill {
 display: inline-flex;
 align-items: baseline;
 gap: 4px;
 background: var(--axx-accent);
 color: #fff;
 padding: 8px 20px;
 border-radius: var(--axx-radius-lg);
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: 1.6rem;
 margin-bottom: 16px;
 box-shadow: var(--axx-shadow-pop);
}
.axx-brand-meta-row {
 display: flex;
 gap: 32px;
 flex-wrap: wrap;
 margin-top: 24px;
 font-size: 0.95rem;
}
.axx-brand-meta-row > div {
 display: flex;
 flex-direction: column;
}
.axx-brand-meta-row .axx-meta-label {
 font-size: 0.78rem;
 color: var(--axx-muted);
 text-transform: uppercase;
 letter-spacing: 0.08em;
 font-weight: 600;
}
.axx-brand-meta-row .axx-meta-value {
 font-weight: 600;
 color: var(--axx-fg);
}

.axx-prose {
 max-width: 720px;
 margin: 48px auto;
 font-size: 1.08rem;
 line-height: 1.7;
}
.axx-prose h2 {
 font-family: var(--axx-font-display);
 font-weight: 700;
 font-size: 1.7rem;
 margin: 40px 0 16px;
 color: var(--axx-fg);
}
.axx-prose p { margin: 0 0 18px; }
.axx-prose em { font-style: italic; color: var(--axx-accent); font-weight: 600; }
.axx-prose strong { color: var(--axx-fg); font-weight: 700; }

.axx-pros-cons {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 24px;
 margin: 32px 0;
}
@media (max-width: 600px) { .axx-pros-cons { grid-template-columns: 1fr; } }
.axx-pros, .axx-cons {
 padding: 24px;
 border-radius: var(--axx-radius-md);
 background: var(--axx-bg-card);
 box-shadow: var(--axx-shadow-soft);
}
.axx-pros { border-left: 4px solid #5EA876; }
.axx-cons { border-left: 4px solid #C66745; }
.axx-pros h3, .axx-cons h3 {
 font-family: var(--axx-font-display);
 margin: 0 0 12px;
 font-size: 1.15rem;
 color: var(--axx-fg);
}
.axx-pros ul, .axx-cons ul {
 margin: 0;
 padding-left: 18px;
 font-size: 0.96rem;
 line-height: 1.6;
}
.axx-pros li, .axx-cons li { margin-bottom: 6px; }
/* ─── axx — rounded cream-pastel frame ───────────────────────────────── */
.axx-shot-frame {
  margin: 32px 0;
  padding: 16px;
  background: var(--axx-bg-card);
  border-radius: var(--axx-radius-lg);
  box-shadow: var(--axx-shadow-pop);
}
.axx-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--axx-radius-md);
}
.axx-shot-caption {
  font-family: var(--axx-font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--axx-muted);
  margin: 12px 0 0;
  text-align: center;
}

/* ─── Mobile shot side-by-side variant (all archetypes) ─────────────── */
.shot-pair {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  margin: 32px 0;
}
.shot-pair .shot-desktop { grid-column: 1 / 2; }
.shot-pair .shot-mobile { grid-column: 2 / 3; }
@media (max-width: 760px) {
  .shot-pair { grid-template-columns: 1fr; }
}

/* Visit-site CTA buttons per archetype */


.axx-visit-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--axx-accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--axx-font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--axx-radius-lg);
  box-shadow: var(--axx-shadow-pop);
}
.axx-visit-cta:hover {
  background: var(--axx-accent-dim);
  color: #fff;
}

/* ─── Brand shot: solo desktop su desktop, solo mobile su mobile (no side-by-side) ─── */
.shot-pair {
  display: block;
  grid-template-columns: none;
}
.shot-pair .shot-desktop { display: block; }
.shot-pair .shot-mobile { display: none; }
@media (max-width: 760px) {
  .shot-pair .shot-desktop { display: none; }
  .shot-pair .shot-mobile { display: block; max-width: 390px; margin: 0 auto; }
}

/* ─── Hamburger mobile menu (no JS framework, vanilla) ─── */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 20;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .axx-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px 24px;
    background: var(--axx-bg);
    border-bottom: 1px solid var(--axx-border);
    gap: 16px !important;
    box-shadow: 0 8px 24px rgba(61,40,24,0.08);
  }
  .axx-nav.is-open { display: flex; }
  .axx-header { position: relative; }
  .axx-header-inner { position: relative; }
}

