/*
 * Theme Name: bzh
 * Theme URI: http://www.aikido-birankai.ch/
 * Description: Birankai Zuerich default Theme
 * Version: 1.0
 * Author: Philippe Baur
 * Author URI: http://binaryfix.net/
*/
@-moz-document url-prefix() { 
    .home { 
        font-size:1.4em;
    }
}


@media only screen and (max-width: 1080px) and (orientation: portrait) { 
    @-moz-document url-prefix() { 
        .home { 
            font-size:1.1em;
        }
        .nav a {
            font-size: 0.7em;
        }
    }
}

body {
    font-size: 1.2em;
}

/** non-sticky header
html, body{
  height: 100%;
}
 */
/** sticky header  */ 
html, body{
  height: fit-content;
  scroll-padding-top: 9.5rem;
}


body .site {
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

body select {
    text-align: left;
    background-color: #fcfcfa;
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-top: 0.1em;
    padding-right: 0.3em;
    padding-bottom: 0.1em;
    padding-left: 0.3em;
    font-size: 0.75em;
}

.bzh-news-list {
    text-align: left;
    margin-top: 40px;
}

.bzh-news-item {
    font-size: 0.7em;
    font-weight: normal;
    white-space: normal;
}

#id-bzh-news-portrait {
    display: inline;
}

.bzh-news-list {
    text-align: left;
    margin-top: 4px;
}

.bzh-news-title {
    color: #bf4845;
    font-weight: bold;
    padding-bottom: 5px;
}

.bzh-news-item {
    font-size: 0.7em;
    font-weight: normal;
    white-space: normal;
    padding-left: 22px;
}

.bzh-news-item a {
    color: #bf4845;
    text-decoration: none;
}

.bzh-row-height {
    height: 100%;
}

/* ============================================
   Aikido Birankai Zürich
============================================ */
:root {
    --paper: #fbfaf7;
    --ink: #151515;
    --ink-2: rgba(21, 21, 21, 0.72);
    --ink-3: rgba(21, 21, 21, 0.55);
    --line: rgba(21, 21, 21, 0.16);
    --japan-red: #b94742;
    --wrap: 1120px;
    --pad: 24px;
    --gap: 56px;
    --h1: clamp(40px, 6vw, 72px);
    --lead: clamp(18px, 2.2vw, 24px);
    --h2: 22px;
    --h3: 14px;
}

/* Base */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background-color: var(--paper);
    line-height: 1.55;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    /* background-image: url("samecomon.svg");*/
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.22;
    pointer-events: none;
    z-index: -1;
}

/* Layout */
.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

.divider {
    height: 1px;
    background: var(--line);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    padding: 0;
    z-index: 10;
    background: rgba(251, 250, 247, 0.86);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5em;
    padding-top: 4px;
    padding-bottom: 8px;
}


.brand-sub {
    margin-top: 4px;
    font-size: 16px;
    color: var(--ink-2);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    height: 120px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1d1d1b;
}

.brand-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: #6b6b6b;
}

.nav {
    display: flex;
    row-gap: 0.1em;
    column-gap: 1em;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.nav a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.8em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
}

.nav a:hover {
    border-bottom-color: var(--line);
}

.hero {
    padding-top: clamp(40px, 6vw, 72px);
    padding-bottom: clamp(28px, 4vw, 52px);
}

.hero-eyebrow {
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 14px;
}

.hero-title {
    font-size: var(--h1);
    line-height: 1.03;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: var(--lead);
    color: var(--ink-2);
    margin: 0 0 22px 0;
    max-width: 70ch;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    padding-top: 10px;
}

.meta-item {
    font-size: 18px;
    color: var(--ink-2);
}

.meta-label {
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-right: 10px;
}

/* Sections */
.section {
    padding-top: var(--gap);
    padding-bottom: var(--gap);
}

.section-title {
    font-size: var(--h2);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 26px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
}

.block-title {
    margin: 0 0 12px 0;
    font-size: var(--h3);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
}

.block-text {
    margin: 0 0 14px 0;
    font-size: 18px;
    color: var(--ink-2);
    max-width: 70ch;
}

.list {
    margin: 14px 0 0 0;
    padding-left: 20px;
    color: var(--ink-2);
    font-size: 18px;
}

.list li {
    margin: 8px 0;
}

/* Links */
.link {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
}

.link:hover {
    border-bottom-color: var(--ink-3);
}

.muted {
    color: var(--ink-3);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 26px 0;
    background: rgba(251, 250, 247, 0.72);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

/* Responsive */
@media ( max-width : 860px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .nav {
        justify-content: flex-start;
    }
}
/* =========================
   IMAGE STRIP
========================= */
.image-strip {
    width: 100%;
    margin: 4rem 0;
}

.image-strip img {
    display: block;
    max-width: 1100px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.value-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    padding: 1.8rem 2.5rem 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bzh-red-box {
    background-color: var(--japan-red);
    color: #7a2e2a;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1.2rem 1.4rem;
    border-radius: 14px;
    min-height: 50px;
    text-align: center;
    line-height: 1.6;
    margin: 3px;
}

@media ( max-width : 900px) {
    .value-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media ( max-width : 480px) {
    .value-strip {
        grid-template-columns: 1fr;
    }
}

@media ( max-width : 640px) {
    .values {
        gap: 0.6rem;
    }
    .bzh-red-box {
        padding: 0.45rem 0.8rem;
        min-height: auto;
        max-width: none;
        border-radius: 6px;
    }
    .bzh-red-box span, .bzh-red-box p, .bzh-red-box .value-text {
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        font-weight: 700;
        text-transform: uppercase;
    }
}
.entry-cta {
    margin-top: 0.9rem;
}

.btn-japanred {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--japan-red);
    color: #7a2e2a;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1.2rem 1.4rem;
    min-height: 50px;
    border-radius: 14px;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.btn-japanred:hover {
    background-color: #b94742; /* Japanrot */
    color: #f2f2ee;
}