/* ============================================
   Milchmann Basel — Static restoration
   Warm, traditional, photo-led
   ============================================ */

:root {
    --cream: #f4ecda;
    --cream-deep: #e8dcc1;
    --paper: #faf6ec;
    --ink: #1a1814;
    --ink-soft: #3f3830;
    --muted: #6e6452;
    --line: #d4c8ad;
    --line-soft: #e6dcc4;
    --milkmaa-blue: #1d3f7a;
    --milkmaa-blue-dark: #122a55;
    --milkmaa-blue-hover: #2a539b;
    --terracotta: #b04e2a;
    --terracotta-hover: #c75e35;
    --leaf: #4a6b3a;
    --honey: #d99a3a;
    --shadow-1: 0 2px 8px rgba(28, 26, 23, 0.06);
    --shadow-2: 0 14px 36px rgba(28, 26, 23, 0.14);
    --shadow-3: 0 28px 60px rgba(28, 26, 23, 0.18);
    --radius: 4px;
    --radius-lg: 8px;
    --serif: "Fraunces", Georgia, "Times New Roman", serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --wrap: 1180px;
}

/* Subtle paper grain across the page */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45  0 0 0 0 0.4  0 0 0 0 0.3  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "kern", "liga";
}

h1, h2, h3 {
    font-feature-settings: "dlig", "ss01", "kern";
    font-optical-sizing: auto;
}

img { max-width: 100%; display: block; }
a {
    color: var(--milkmaa-blue);
    text-decoration: underline;
    text-decoration-color: rgba(29, 63, 122, 0.25);
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:hover {
    color: var(--terracotta);
    text-decoration-color: var(--terracotta);
}
.brand, .primary-nav a, .cta, .site-footer nav a { text-decoration: none; }

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, .brand-text, .footer-brand {
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--ink);
}
h1 {
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    font-weight: 900;
    font-variation-settings: "opsz" 144;
    letter-spacing: -0.025em;
}
h2 {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    margin-bottom: 1.2rem;
    font-variation-settings: "opsz" 60;
}
h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
    font-variation-settings: "opsz" 24;
}

/* Drop-cap on lead paragraphs in story sections */
.story-text .lead::first-letter {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 3.2em;
    float: left;
    line-height: 0.85;
    padding: 0.1em 0.12em 0 0;
    color: var(--milkmaa-blue);
    font-variation-settings: "opsz" 144;
}

.kicker {
    font-family: var(--sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: var(--terracotta);
    margin-bottom: 0.9rem;
}
.kicker.centered { text-align: center; }
.centered { text-align: center; }
.intro { max-width: 640px; margin: 0 auto 3rem; color: var(--ink-soft); font-size: 1.1rem; }
.lead { font-size: 1.18rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
p { margin-bottom: 1rem; }

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--milkmaa-blue);
    color: var(--cream);
    padding: 0.7rem 1rem;
    z-index: 9999;
    border-radius: 0 0 var(--radius) 0;
    text-decoration: none;
    font-weight: 600;
}
.skip-link:focus { left: 0; outline: 3px solid var(--honey); }

/* Focus-visible */
:focus-visible {
    outline: 3px solid var(--honey);
    outline-offset: 3px;
    border-radius: 4px;
}
.cta:focus-visible { outline-offset: 4px; }

/* ============================================
   Header & navigation
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 246, 236, 0.85);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    transition: padding 0.2s ease;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink);
    text-decoration: none;
}
.brand-mark {
    width: 22px;
    height: 26px;
    color: var(--milkmaa-blue);
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.2s ease;
}
.brand:hover .brand-mark { color: var(--terracotta); transform: rotate(-4deg); }
.brand-text {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.brand-text em {
    font-style: italic;
    font-weight: 500;
    color: var(--milkmaa-blue);
}

.primary-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.primary-nav a {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    padding: 0.4rem 0;
}
.primary-nav a:hover { color: var(--milkmaa-blue); }

@media (max-width: 1100px) {
    .primary-nav { gap: 1.4rem; }
    .primary-nav a { font-size: 0.85rem; }
}

/* ============================================
   Hero
   ============================================ */

.hero {
    position: relative;
    min-height: 88vh;
    display: grid;
    align-items: end;
    color: var(--cream);
    overflow: hidden;
    isolation: isolate;
}
.hero-image {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 65%, rgba(0,0,0,0.55) 0%, transparent 55%),
        linear-gradient(180deg,
            rgba(28, 26, 23, 0.15) 0%,
            rgba(28, 26, 23, 0.35) 40%,
            rgba(28, 26, 23, 0.85) 100%);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-content {
    padding-top: 5rem;
    padding-bottom: 4rem;
}
.hero .kicker { color: #f0d39a; }
.hero h1 {
    color: var(--cream);
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero .lede {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    max-width: 600px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #f4ecda;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.4rem;
}

.h1-accent {
    font-style: italic;
    font-weight: 500;
    color: #f0d39a;
    font-variation-settings: "opsz" 144;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.cta-ghost {
    color: var(--cream);
    border-bottom: 2px solid rgba(255,255,255,0.4);
    padding: 0.5rem 0;
    font-weight: 500;
    text-decoration: none;
}
.cta-ghost:hover { border-color: #f0d39a; color: #f0d39a; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 14px;
    display: grid;
    place-items: start center;
    padding-top: 7px;
}
.hero-scroll span {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%      { transform: translateY(10px); opacity: 0.4; }
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--cream);
    color: var(--ink);
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 2px solid var(--cream);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.cta::after {
    content: "→";
    transition: transform 0.2s ease;
}
.cta:hover {
    background: var(--terracotta-hover);
    border-color: var(--terracotta-hover);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(176, 78, 42, 0.35);
}
.cta:hover::after { transform: translateX(3px); }

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--milkmaa-blue);
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--milkmaa-blue);
    text-decoration: none;
}
.cta-secondary:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ============================================
   Section layout primitives
   ============================================ */

section { padding: clamp(4rem, 8vw, 7rem) 0; }
.split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.split.flipped > :first-child { order: 2; }

.story { background: var(--paper); }
.story-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    background: var(--cream-deep);
}
.story-photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

/* ============================================
   How (Milchbiechli steps)
   ============================================ */

.how { background: var(--cream); }
.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 4rem;
    position: relative;
}
.steps::before {
    content: "";
    position: absolute;
    top: 38px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background-image: linear-gradient(to right, var(--milkmaa-blue) 50%, transparent 50%);
    background-size: 12px 2px;
    background-repeat: repeat-x;
    opacity: 0.45;
    z-index: 0;
}
.steps li {
    background: var(--paper);
    padding: 2rem 1.4rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.steps li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2);
    border-color: var(--milkmaa-blue);
}
.step-num {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--milkmaa-blue);
    color: var(--cream);
    font-family: var(--serif);
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 0 6px var(--cream);
}
.steps h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.steps p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }

/* ============================================
   Products
   ============================================ */

.products { background: var(--paper); }
.products .split { margin-bottom: 4rem; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.product-card {
    background: var(--cream);
    padding: 1.8rem 1.6rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.product-card h3 {
    font-size: 1.25rem;
    border-bottom: 2px solid var(--milkmaa-blue);
    padding-bottom: 0.6rem;
    margin-bottom: 0.9rem;
    color: var(--milkmaa-blue);
}
.product-card ul {
    list-style: none;
}
.product-card li {
    padding: 0.35rem 0;
    border-bottom: 1px dashed var(--line);
    font-size: 0.95rem;
    color: var(--ink-soft);
}
.product-card li:last-child { border-bottom: none; }

/* ============================================
   Areas
   ============================================ */

.areas { background: var(--milkmaa-blue); color: var(--cream); }
.areas h2, .areas .kicker { color: var(--cream); }
.areas .kicker { color: #f0d39a; }
.areas .intro { color: rgba(255,255,255,0.85); }

.schedule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 880px;
    margin: 0 auto;
}
.schedule-col {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.schedule-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}
.day-pill {
    display: grid;
    place-items: center;
    min-width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--milkmaa-blue-dark);
    font-family: var(--serif);
    font-weight: 900;
    font-size: 1.4rem;
}
.day-and {
    color: #f0d39a;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
}
.schedule-col ul {
    list-style: none;
}
.schedule-col li {
    padding: 0.7rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.94);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.6rem;
}
.schedule-col li:last-child { border-bottom: none; }
.schedule-col li strong { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; }
.schedule-col li small { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

.areas-note {
    margin-top: 3rem;
    color: #f0d39a;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
}

/* ============================================
   Stimmen (testimonials)
   ============================================ */

.press {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--terracotta);
    background: var(--cream-deep);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.press-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 0.2rem;
}
.press p { margin: 0; color: var(--ink); font-size: 0.95rem; }

.dialect {
    border-bottom: 1.5px dotted var(--terracotta);
    cursor: help;
    position: relative;
    font-weight: 500;
}
.dialect:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--cream);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 400;
    white-space: nowrap;
    z-index: 50;
    box-shadow: var(--shadow-2);
}

.product-card--feature {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-deep) 100%);
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: stretch;
}
.halde-photo {
    display: block;
    overflow: hidden;
    background: var(--cream-deep);
    text-decoration: none;
}
.halde-photo img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: block;
}
.halde-photo:hover img { transform: scale(1.05); }
.halde-body {
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
}
.halde-body h3 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0.3rem;
}
.halde-link {
    align-self: flex-start;
    margin-top: 0.4rem;
    color: var(--milkmaa-blue);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(29, 63, 122, 0.3);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.halde-link:hover {
    color: var(--terracotta);
    border-color: var(--terracotta);
}
.halde-link span { font-size: 0.85em; margin-left: 0.2em; }

.product-card .card-intro {
    color: var(--ink-soft);
    font-size: 0.97rem;
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 700px) {
    .product-card--feature {
        grid-template-columns: 1fr;
    }
    .halde-photo img {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }
}

/* ============================================
   Geschichte / Historisch
   ============================================ */
.geschichte {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
    position: relative;
}
.geschichte::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--line), transparent);
}
.geschichte-intro { margin-bottom: 4rem; }

.historisch-hero {
    margin-bottom: 4rem;
}
.historisch-feature {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-3);
    background: #1a1814;
}
.historisch-feature img {
    width: 100%;
    max-height: 580px;
    object-fit: cover;
    filter: sepia(0.18) contrast(1.04);
    transition: filter 0.4s ease;
    display: block;
}
.historisch-feature:hover img { filter: sepia(0) contrast(1.05); }

.geschichte .split { margin-bottom: 4rem; }
.geschichte-h3 {
    font-family: var(--serif);
    font-size: 1.75rem;
    color: var(--milkmaa-blue-dark);
    margin-bottom: 1.2rem;
    line-height: 1.25;
}
.historisch-side {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--ink);
    box-shadow: var(--shadow-2);
}
.historisch-side img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: sepia(0.2) contrast(1.03);
    display: block;
}

.historisch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
.historisch-grid figure {
    background: var(--ink);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    transition: transform 0.4s ease;
}
.historisch-grid figure:hover { transform: translateY(-4px); }
.historisch-grid figure {
    background: transparent;
}
.historisch-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: sepia(0.22) contrast(1.05);
    transition: filter 0.4s ease;
    display: block;
}
.historisch-grid figure:hover img { filter: sepia(0); }

.sub-h3 {
    font-family: var(--serif);
    font-size: 1.45rem;
    color: var(--milkmaa-blue-dark);
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.kicker-inline {
    margin-top: 2rem;
    margin-bottom: 0.7rem;
    color: var(--terracotta);
}

.historisch-essay {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}
.essay-quote {
    border-left: 4px solid var(--milkmaa-blue);
    background: var(--paper);
    padding: 2rem 2.2rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-1);
}
.essay-quote p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 1.2rem;
}
.essay-quote p:last-child { margin-bottom: 0; }

.gute-wahl {
    max-width: 820px;
    margin: 0 auto 4rem;
}
.gute-wahl-card {
    background: linear-gradient(135deg, var(--milkmaa-blue) 0%, var(--milkmaa-blue-dark) 100%);
    color: var(--cream);
    padding: 2.5rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2);
    text-align: center;
}
.gute-wahl-card .kicker { color: #f0d39a; }
.gute-wahl-card h3 {
    color: var(--cream);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 700;
    font-family: var(--serif);
}
.gute-wahl-card p {
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem;
    margin: 0;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.getraenke {
    background: var(--paper);
    padding-top: clamp(4rem, 8vw, 7rem);
    padding-bottom: clamp(4rem, 8vw, 7rem);
}
.getraenke-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-radius: var(--radius);
}
.getraenke-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
    background: var(--cream-deep);
}

.press-feature {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}
.press-clipping {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.5rem;
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-1);
}
.press-clipping img {
    width: 100%;
    border: 1px solid var(--line);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    filter: sepia(0.08);
}
.press-clipping figcaption { margin: 0; }
.press-feature-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 0.8rem;
}
.press-feature-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 2rem;
    line-height: 1.15;
    color: var(--milkmaa-blue-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.stimmen { background: var(--cream-deep); }
.quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.quote blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    line-height: 1.45;
    color: var(--ink);
    quotes: "«" "»" "‹" "›";
    font-feature-settings: "ss01";
}
.quote figcaption {
    margin-top: 1.5rem;
    color: var(--terracotta);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.quote figcaption em {
    font-style: normal;
    color: var(--terracotta);
}

/* ============================================
   Gallery
   ============================================ */

.gallery { background: var(--paper); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-grid figure {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream-deep);
    box-shadow: var(--shadow-1);
    cursor: zoom-in;
}
.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-grid figure:hover img { transform: scale(1.06); }

/* Lightbox overlay */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 5, 0.92);
    display: none;
    z-index: 9999;
    place-items: center;
    padding: 2rem;
    cursor: zoom-out;
    animation: fade-in 0.25s ease;
}
.lightbox.is-open { display: grid; }
.lightbox img {
    max-width: 100%;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: grid;
    place-items: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   Contact
   ============================================ */

.contact { background: var(--cream); }
.contact-info {
    margin: 2rem 0;
}
.contact-info > div {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.contact-info dt {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.contact-info dd {
    color: var(--ink);
    font-size: 1rem;
}
.contact-info small { color: var(--muted); }

.contact-form {
    display: grid;
    gap: 1rem;
    background: var(--paper);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.contact-form label {
    display: grid;
    gap: 0.3rem;
}
.contact-form label span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--line);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--ink);
    border-radius: var(--radius);
    transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--milkmaa-blue);
}
/* Honeypot — hidden from people, visible to dumb bots */
.hp-field {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Form status banner (success / error) */
.form-status {
    display: none;
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}
.form-status.is-ok {
    display: block;
    background: #e8f1e3;
    border: 1px solid #b8d5a8;
    color: #2c4a1a;
}
.form-status.is-err {
    display: block;
    background: #f6e0d6;
    border: 1px solid #d99a82;
    color: #76281a;
}

.req { color: var(--terracotta); }
.req-text {
    font-family: var(--serif);
    font-style: italic;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 0.3em;
}
.form-note { font-size: 0.8rem; color: var(--muted); margin: -0.4rem 0 0.3rem; }

.contact-form button {
    background: var(--milkmaa-blue);
    color: var(--cream);
    border: none;
    padding: 1rem;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s ease;
    letter-spacing: 0.03em;
}
.contact-form button:hover { background: var(--milkmaa-blue-dark); }

/* ============================================
   Footer
   ============================================ */

.site-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 3rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    text-align: left;
}
.footer-brand { font-size: 1.4rem; color: var(--cream); margin-bottom: 0.2rem; }
.footer-tag { font-family: var(--serif); font-style: italic; color: #f0d39a; }
.site-footer nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.site-footer nav a { color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.site-footer nav a:hover { color: var(--cream); }
.copyright { text-align: right; color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 980px) {
    .split, .split.flipped { grid-template-columns: 1fr; }
    .split.flipped > :first-child { order: 0; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .copyright { text-align: center; }
    .press-clipping { grid-template-columns: 1fr; padding: 1.8rem; gap: 1.8rem; }
    .historisch-feature figcaption { padding: 1.4rem 1.4rem 1.2rem; }
    .historisch-feature figcaption strong { font-size: 1.15rem; }
}

@media (max-width: 600px) {
    .primary-nav { display: none; }
    .steps { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .area-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .historisch-grid { grid-template-columns: 1fr; }
    .getraenke-grid { grid-template-columns: 1fr; }
    .hero { min-height: 75vh; }
}

/* Reveal-on-scroll */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.hero { opacity: 1 !important; transform: none !important; }

/* Scroll-aware header */
.site-header.is-scrolled {
    background: rgba(250, 246, 236, 0.96);
    border-bottom-color: var(--line);
    box-shadow: 0 4px 18px rgba(28,26,23,0.05);
}
.site-header.is-scrolled .nav-wrap {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}
.site-header.is-scrolled .brand-mark {
    transform: scale(0.9);
}

.primary-nav a {
    position: relative;
    padding-bottom: 2px;
}
.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}
.primary-nav a:hover::after,
.primary-nav a.is-active::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Print */
@media print {
    body { background: white; color: black; font-size: 11pt; }
    body::before, .site-header, .hero-scroll, .lightbox, nav, .contact-form, .cta, .cta-ghost, .cta-secondary { display: none !important; }
    section { padding: 1.2rem 0; break-inside: avoid; }
    h1, h2, h3 { color: black; }
    .hero { min-height: auto; color: black; }
    .hero-image { display: none; }
    .hero h1 { color: black; text-shadow: none; }
    a { color: black; text-decoration: underline; }
    img { max-width: 50%; }
}
