:root {
    --terracotta:  #a6491f;
    --terracotta-light: #c97a44;
    --ink:         #40281b;
    --text-body:   #5c4a3a;
    --text-muted:  #9c8b7a;
    --border:      #e3d3bf;
    --cream:       #fbf6ee;
    --card:        #ffffff;
    --shadow:       0 4px 16px rgba(44, 26, 14, 0.06);
    --shadow-hover: 0 10px 28px rgba(44, 26, 14, 0.14);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    background-color: #ffffff;
    color: var(--text-body);
    -webkit-font-smoothing: antialiased;
    position: relative;
}

a {
    color: var(--terracotta);
    text-decoration: underline;
    text-decoration-color: rgba(166, 73, 31, 0.35);
    text-underline-offset: 3px;
    transition: color 0.2s;
}
a:hover { color: var(--ink); }

/* ── Layout ────────────────────────────────────────────── */

.page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-accent-bar {
    height: 40px;
    background: var(--ink);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--card);
}

.topbar-inner {
    margin: 0 auto;
    width: 100%;
    padding: 0.85rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    color: #fff;
    font-size: 1.05rem;
    background: var(--ink);
    flex-shrink: 0;
}

.brand-name {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
}

.topbar-link {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
}

.topbar-link:hover { color: var(--terracotta); }

.page-main {
    flex: 1;
}

.page-footer {
    background: var(--ink);
    color: #ffffff;
    padding: 1.5rem;
}

.page-footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.9rem;
    text-align: center;
}

.page-footer-inner .fal { color: var(--terracotta-light); }

.page-footer-inner a {
    color: #fff;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.page-footer-inner a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ── Bands ─────────────────────────────────────────────── */

.band-inner {
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
    text-align: center;
}

.band-hero {
    padding: 1rem 0 2.5rem;
}

.band-inner-wide {
    max-width: none;
    padding: 0 3rem;
}

.band-info {
    padding: 2rem 0;
    border-top: 1px solid rgba(64, 40, 27, 0.15);
    border-bottom: 1px solid rgba(64, 40, 27, 0.15);
    background: var(--ink);
}

.band-network {
    padding: 3rem 0 3.5rem;
    background: rgba(246,246,246,1);
}

.band-page {
    padding: 3.5rem 0 3rem;
}

.band-page .band-inner { text-align: left; }

/* ── Hero ──────────────────────────────────────────────── */

.hero-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-founder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    width: 150px;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.2s;
}

.hero-founder:hover {
    opacity: 0.75;
}

.hero-founder img {
    height: 130px;
    width: auto;
}

.hero-founder .network-label {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-spacer {
    width: 150px;
    flex-shrink: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c0392b;
    background: rgba(192, 57, 43, 0.09);
    border: 1px solid rgba(192, 57, 43, 0.25);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.0rem;
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c0392b;
}

.hero-kicker {
    display: block;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.hero-title {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 2.9rem;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 1.2rem;
    line-height: 1;
}

.hero-tagline {
    max-width: 620px;
    margin: 0 auto 1.0rem;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.85;
}

/* ── Feature list ──────────────────────────────────────── */

.feature-list {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: safe center;
    gap: 2rem;
    overflow-x: auto;
    padding: 0.25rem 0.25rem 0.75rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

.feature-list::-webkit-scrollbar {
    height: 6px;
}

.feature-list::-webkit-scrollbar-track {
    background: transparent;
}

.feature-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
}

.feature-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    flex: 0 0 auto;
    width: 150px;
    text-align: center;
    scroll-snap-align: start;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--terracotta-light);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-label {
    font-size: 1.0em;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}

/* ── Address ───────────────────────────────────────────── */

.address-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Caveat', cursive;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
}

.address-line .fal { font-size: 1rem; }

/* ── Founder / sister network ─────────────────────────────*/

.network-label {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
}

.sister-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.sister-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 200px;
    padding: 2rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.sister-button img {
    height: 64px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.sister-name {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
}

.sister-city {
    font-size: 0.9rem;
    color: var(--terracotta);
}

.sister-button:hover {
    border-color: var(--terracotta);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.sister-button:hover .sister-name {
    color: var(--terracotta);
}

/* ── Simple pages (mentions / 404) ────────────────────── */

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    color: var(--terracotta);
    text-decoration: none;
}

.section-heading {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-text {
    margin-bottom: 1.5rem;
    text-align: left;
}

.mentions-section {
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
    text-align: left;
}

.mentions-section h2 {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.mentions-section p {
    font-size: 0.85rem;
    color: var(--text-body);
}

/* ── Responsive ────────────────────────────────────────── */

@media (max-width: 640px) {
    .hero-grid { flex-direction: column; }
    .hero-spacer { display: none; }
    .band-inner-wide { padding: 0 1.5rem; }
    .topbar-inner { padding: 0.85rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.1rem; }
    .brand-name { display: none; }
}

/* ── FontAwesome centering ─────────────────────────────── */

.fa, .fas, .far, .fab, .fal, .fad, .fat, .fass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
