/* =============================================
   UHRMACHER BRENNER — styles.css
   Dense, crafted, antiquarian watchmaker
   ============================================= */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
    --ebony: #1a1410;
    --ebony-lighter: #231c15;
    --ebony-light: #2e2318;
    --brass: #b5892a;
    --brass-light: #d4a840;
    --brass-dim: #8a6618;
    --brass-glow: rgba(181, 137, 42, 0.35);
    --parchment: #f4ede0;
    --parchment-dim: #c8b898;
    --mid: #4a3a2a;
    --mid-light: #6a5640;
    --line: rgba(181, 137, 42, 0.2);
    --line-bright: rgba(181, 137, 42, 0.5);
    --text-body: #c8b898;
    --text-muted: #8a7860;
    --text-bright: #f0e0c0;
    --font-display: 'Libre Baskerville', Georgia, serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
    --radius-sm: 0.25rem;
    --shadow-brass: 0 4px 24px rgba(181, 137, 42, 0.18);
    --shadow-deep: 0 12px 48px rgba(0, 0, 0, 0.55);
    --transition: 0.28s ease;
    --transition-slow: 0.5s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-mono);
    background-color: var(--ebony);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --- SECTION LABELS --- */
.section-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 0.9rem;
    opacity: 0.85;
}

.section-label--center {
    text-align: center;
}

/* =============================================
   MECHANICAL GAUGE NAVIGATION
   ============================================= */
.gauge-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 52px;
    background: linear-gradient(180deg,
        #0e0b08 0%,
        #1a1410 40%,
        #211810 70%,
        #1a1410 100%
    );
    border-bottom: 1px solid var(--line-bright);
    box-shadow: 0 2px 0 rgba(181, 137, 42, 0.08), 0 4px 24px rgba(0,0,0,0.6);
    transition: var(--transition);
}

/* Subtle rivet texture pseudo-element */
.gauge-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12px 26px, rgba(181,137,42,0.2) 1px, transparent 1.5px),
        radial-gradient(circle at calc(100% - 12px) 26px, rgba(181,137,42,0.2) 1px, transparent 1.5px);
    pointer-events: none;
}

.gauge-nav--scrolled {
    background: linear-gradient(180deg, #080604 0%, #120f0b 50%, #1a1410 100%);
    box-shadow: 0 2px 0 rgba(181, 137, 42, 0.12), 0 8px 32px rgba(0,0,0,0.8);
}

.gauge-nav__inner {
    height: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.gauge-nav__tick-start,
.gauge-nav__tick-end {
    display: flex;
    align-items: center;
    gap: 2px;
    opacity: 0.4;
}

.gauge-nav__tick-mark {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--brass);
    line-height: 1;
}

.gauge-nav__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 0 0.6rem;
}

.gauge-nav__indicator {
    font-size: 0.55rem;
    color: var(--brass);
    transition: opacity 0.1s;
    line-height: 1;
}

.gauge-nav__brand-text {
    font-family: var(--font-display);
    font-size: 0.88rem;
    color: var(--parchment-dim);
    letter-spacing: 0.06em;
}

.gauge-nav__brand-text em {
    font-style: italic;
    color: var(--brass);
}

.gauge-nav__separator {
    color: var(--brass);
    opacity: 0.5;
    font-size: 0.75rem;
    padding: 0 0.3rem;
}

.gauge-nav__links {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.gauge-nav__link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 0.85rem;
    height: 52px;
    transition: background var(--transition), color var(--transition);
    border-right: 1px solid var(--line);
}

.gauge-nav__link:first-child {
    border-left: 1px solid var(--line);
}

.gauge-nav__link:hover {
    background: rgba(181, 137, 42, 0.08);
}

.gauge-nav__link:hover .gauge-nav__link-text {
    color: var(--brass-light);
}

.gauge-nav__link-num {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--brass-dim);
    line-height: 1;
    opacity: 0.7;
}

.gauge-nav__link-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--parchment-dim);
    transition: color var(--transition);
}

.gauge-nav__sep-tick {
    color: var(--brass);
    opacity: 0.3;
    font-size: 0.7rem;
    padding: 0 0.15rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--ebony);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 52px;
}

.hero__atmosphere {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 72% 50%, rgba(181, 137, 42, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(74, 58, 42, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

/* --- CSS CLOCK FACE --- */
.clock-face {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(280px, 36vw, 520px);
    height: clamp(280px, 36vw, 520px);
}

.clock-face__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--line);
}

.clock-face__ring--outer {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(181, 137, 42, 0.25);
    box-shadow:
        inset 0 0 40px rgba(0,0,0,0.8),
        0 0 60px rgba(181, 137, 42, 0.08),
        inset 0 0 1px rgba(181,137,42,0.4);
    background: radial-gradient(ellipse at center, #1e1810 0%, #0e0b07 100%);
}

.clock-face__ring--inner {
    width: 88%;
    height: 88%;
    border-color: rgba(181, 137, 42, 0.12);
}

.clock-face__markers {
    position: absolute;
    inset: 0;
}

.clock-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: var(--font-display);
    font-size: clamp(0.6rem, 1.2vw, 0.85rem);
    color: var(--brass);
    opacity: 0.7;
    text-align: center;
    transform:
        translate(-50%, -50%)
        rotate(var(--angle))
        translateY(calc(-1 * clamp(130px, 15.5vw, 230px)))
        rotate(calc(-1 * var(--angle)));
    line-height: 1;
}

/* Minute tick marks */
.clock-face__minute-ticks {
    position: absolute;
    inset: 0;
}

.minute-tick {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: clamp(5px, 0.8vw, 9px);
    background: rgba(181, 137, 42, 0.25);
    transform-origin: top center;
    transform:
        rotate(var(--tick-angle))
        translateX(-50%)
        translateY(calc(-1 * (clamp(120px, 14.5vw, 216px))));
}

.minute-tick--major {
    height: clamp(9px, 1.4vw, 16px);
    width: 1.5px;
    background: rgba(181, 137, 42, 0.5);
}

/* Clock hands */
.clock-face__hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(0deg);
    border-radius: 2px 2px 0 0;
    transition: transform 0.25s cubic-bezier(0.4, 2.0, 0.6, 1);
}

.clock-face__hand--hour {
    width: clamp(3px, 0.4vw, 5px);
    height: clamp(55px, 8vw, 120px);
    background: linear-gradient(to top, var(--brass), var(--brass-dim));
    box-shadow: 0 0 6px rgba(181,137,42,0.3);
}

.clock-face__hand--minute {
    width: clamp(2px, 0.3vw, 3px);
    height: clamp(80px, 11vw, 170px);
    background: linear-gradient(to top, var(--parchment-dim), rgba(200,180,140,0.6));
}

.clock-face__hand--second {
    width: 1px;
    height: clamp(90px, 12.5vw, 195px);
    background: #cc3a20;
    box-shadow: 0 0 4px rgba(204, 58, 32, 0.5);
    transition: transform 0.15s ease;
}

.clock-face__inscription {
    position: absolute;
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25em;
    text-align: center;
    pointer-events: none;
    z-index: 4;
}
.clock-face__inscription-name {
    font-family: var(--font-display);
    font-size: clamp(0.7rem, 1.4vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--brass-light);
    opacity: 0.9;
    text-transform: uppercase;
}
.clock-face__inscription-sub {
    font-family: var(--font-mono);
    font-size: clamp(0.38rem, 0.7vw, 0.55rem);
    letter-spacing: 0.15em;
    color: var(--brass);
    opacity: 0.55;
    text-transform: uppercase;
    white-space: nowrap;
}

.clock-face__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(8px, 1.2vw, 16px);
    height: clamp(8px, 1.2vw, 16px);
    background: var(--brass);
    border-radius: 50%;
    border: 2px solid var(--ebony);
    box-shadow: 0 0 8px rgba(181,137,42,0.5);
    z-index: 10;
}

/* Hero text */
.hero__content {
    position: relative;
    z-index: 5;
    max-width: 560px;
    margin: 0 0 0 max(2rem, 8vw);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    color: var(--brass);
    opacity: 0.75;
}

.hero__rule {
    display: block;
    flex: 1;
    height: 1px;
    background: var(--line-bright);
    max-width: 60px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    color: var(--parchment);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.hero__headline em {
    font-style: italic;
    color: var(--brass-light);
    display: block;
}

.hero__sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 460px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brass-light);
    border: 1px solid rgba(181, 137, 42, 0.4);
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: rgba(181, 137, 42, 0.05);
    align-self: flex-start;
    margin-top: 0.4rem;
}

.hero__cta:hover {
    background: rgba(181, 137, 42, 0.12);
    border-color: var(--brass);
    color: var(--brass-light);
    box-shadow: 0 0 18px rgba(181, 137, 42, 0.15);
}

.hero__cta-bracket {
    color: var(--brass-dim);
    opacity: 0.7;
}

/* =============================================
   LEISTUNGEN
   ============================================= */
.leistungen {
    background: var(--ebony-lighter);
    padding: 6rem 2rem;
    border-top: 1px solid var(--line);
}

.leistungen__container {
    max-width: 1000px;
    margin: 0 auto;
}

.leistungen__header {
    max-width: 560px;
    margin-bottom: 3.5rem;
}

.leistungen__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--parchment);
    margin-bottom: 0.7rem;
}

.leistungen__sub {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.leistungen__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* --- LEISTUNG ITEM with animated line reveal --- */
.leistung-item {
    display: grid;
    grid-template-columns: 48px 0 1fr auto;
    align-items: center;
    gap: 0 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.leistung-item:first-child {
    border-top: 1px solid var(--line);
}

.leistung-item--visible {
    opacity: 1;
    transform: translateX(0);
}

.leistung-item__line {
    position: absolute;
    left: 48px;
    top: 50%;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, var(--brass), transparent);
    transition: width 0.6s ease 0.2s;
}

.leistung-item--visible .leistung-item__line {
    width: 100%;
}

.leistung-item__number {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--brass-dim);
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.leistung-item__body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text-bright);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.leistung-item__body p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
}

.leistung-item__icon {
    font-size: 1.4rem;
    opacity: 0.3;
    transition: opacity var(--transition);
}

.leistung-item:hover .leistung-item__icon {
    opacity: 0.75;
}

.leistung-item:hover .leistung-item__body h3 {
    color: var(--brass-light);
}

/* =============================================
   WERKSTATT / TIMELINE
   ============================================= */
.werkstatt {
    background: var(--ebony);
    padding: 6rem 2rem;
    border-top: 1px solid var(--line);
}

.werkstatt__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 5rem;
    align-items: start;
}

.werkstatt__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.werkstatt__timeline::before {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 90px;
    width: 1px;
    background: var(--line);
}

.timeline-node {
    display: grid;
    grid-template-columns: 80px 20px 1fr;
    gap: 1.2rem;
    align-items: start;
    padding-bottom: 2.5rem;
    position: relative;
}

.timeline-node__year {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brass-dim);
    text-align: right;
    padding-top: 0.15rem;
    letter-spacing: 0.06em;
}

.timeline-node--active .timeline-node__year {
    color: var(--brass-light);
}

.timeline-node__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mid);
    border: 1.5px solid rgba(181, 137, 42, 0.35);
    margin-top: 0.2rem;
    position: relative;
    z-index: 2;
}

.timeline-node--active .timeline-node__dot {
    background: var(--brass);
    border-color: var(--brass-light);
    box-shadow: 0 0 10px rgba(181,137,42,0.4);
}

.timeline-node__content h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--text-bright);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.timeline-node--active .timeline-node__content h4 {
    color: var(--brass-light);
}

.timeline-node__content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Werkstatt aside */
.werkstatt__aside {
    padding-top: 0.5rem;
}

.werkstatt__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    color: var(--parchment);
    line-height: 1.15;
    margin-bottom: 2rem;
}

.werkstatt__quote {
    border-left: 2px solid var(--brass);
    padding-left: 1.2rem;
    margin-bottom: 2rem;
}

.werkstatt__quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-bright);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.werkstatt__quote cite {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--brass-dim);
    letter-spacing: 0.08em;
    font-style: normal;
}

.werkstatt__meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid var(--line);
    padding-top: 1.2rem;
}

.werkstatt__meta-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 0.75rem;
}

.meta-key {
    font-family: var(--font-mono);
    letter-spacing: 0.12em;
    color: var(--text-muted);
    opacity: 0.7;
}

.meta-val {
    font-family: var(--font-display);
    color: var(--brass-light);
    font-size: 0.88rem;
}

/* =============================================
   MARKEN
   ============================================= */
.marken {
    background: var(--ebony-lighter);
    padding: 5.5rem 2rem;
    border-top: 1px solid var(--line);
    text-align: center;
}

.marken__container {
    max-width: 900px;
    margin: 0 auto;
}

.marken__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    color: var(--parchment);
    margin-bottom: 0.6rem;
}

.marken__sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.marken__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.brand-logo {
    padding: 1.8rem 1.2rem;
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--parchment-dim);
    background: var(--ebony);
    border: 1px solid var(--line);
    transition: background var(--transition), color var(--transition);
    line-height: 1.3;
}

.brand-logo:hover {
    background: rgba(181, 137, 42, 0.08);
    color: var(--brass-light);
}

.brand-logo small {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    font-weight: 400;
    margin-top: 0.2rem;
}

.marken__note {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    opacity: 0.6;
}

/* =============================================
   ÖFFNUNGSZEITEN + KONTAKT
   ============================================= */
.kontakt {
    background: var(--ebony);
    padding: 5.5rem 2rem;
    border-top: 1px solid var(--line);
}

.kontakt__container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
}

.kontakt__title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--parchment);
    margin-bottom: 1.6rem;
}

.kontakt__hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-row {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(181, 137, 42, 0.07);
    font-size: 0.78rem;
}

.hour-row__day {
    font-family: var(--font-mono);
    color: var(--text-bright);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.hour-row__dots {
    border-bottom: 1px dotted rgba(181,137,42,0.2);
    height: 1px;
    margin-top: 1px;
}

.hour-row__time {
    font-family: var(--font-mono);
    color: var(--brass-dim);
    text-align: right;
    white-space: nowrap;
}

.hour-row__time--closed {
    color: var(--mid-light);
    opacity: 0.5;
}

.kontakt__divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--brass);
    opacity: 0.3;
    font-size: 1.5rem;
    padding-top: 4rem;
}

.kontakt__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--parchment);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.kontakt__address {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.kontakt__phone {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.3rem;
}

.kontakt__phone-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--brass-dim);
    letter-spacing: 0.18em;
    opacity: 0.75;
}

.kontakt__phone a {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--brass-light);
    transition: color var(--transition);
}

.kontakt__phone a:hover {
    color: var(--parchment);
}

.kontakt__note {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    opacity: 0.65;
    line-height: 1.7;
    padding-top: 0.6rem;
    border-top: 1px solid var(--line);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #0e0b08;
    padding: 2.2rem 2rem;
    border-top: 1px solid var(--line-bright);
}

.footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--parchment-dim);
    display: block;
    margin-bottom: 0.35rem;
    letter-spacing: 0.04em;
}

.footer__logo em {
    font-style: italic;
    color: var(--brass-dim);
}

.footer__brand p {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.6;
}

.footer__links {
    display: flex;
    gap: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.footer__links a {
    color: var(--text-muted);
    transition: color var(--transition);
    opacity: 0.7;
}

.footer__links a:hover {
    color: var(--brass);
    opacity: 1;
}

.footer__copy {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
    opacity: 0.35;
    width: 100%;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(181,137,42,0.08);
    letter-spacing: 0.06em;
}

/* =============================================
   ESCAPE DISCLAIMER
   ============================================= */
.escape-disclaimer {
    background: #080604;
    border-top: 1px solid rgba(181, 137, 42, 0.2);
    padding: 0.55rem 1.5rem;
    position: relative;
    z-index: 300;
}

.escape-disclaimer__inner {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: rgba(181, 137, 42, 0.50);
    letter-spacing: 0.04em;
}

.escape-disclaimer__inner i {
    color: rgba(181, 137, 42, 0.55);
    flex-shrink: 0;
}

.escape-disclaimer__inner strong {
    color: rgba(200, 160, 80, 0.80);
    font-weight: 600;
}

.escape-disclaimer__inner a {
    color: var(--brass);
    text-decoration: underline;
    text-decoration-color: rgba(181, 137, 42, 0.35);
}

.escape-disclaimer__inner a:hover {
    color: var(--brass-light);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1000px) {
    .gauge-nav__link-num,
    .gauge-nav__sep-tick,
    .gauge-nav__tick-start,
    .gauge-nav__tick-end,
    .gauge-nav__separator {
        display: none;
    }

    .gauge-nav__link {
        padding: 0 0.7rem;
        border-left: none;
        border-right: none;
    }

    .gauge-nav__links {
        gap: 0.2rem;
    }

    .clock-face {
        width: clamp(200px, 28vw, 340px);
        height: clamp(200px, 28vw, 340px);
        opacity: 0.6;
    }

    .werkstatt__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .kontakt__container {
        grid-template-columns: 1fr;
    }

    .kontakt__divider {
        display: none;
    }
}

@media (max-width: 700px) {
    .gauge-nav__brand-text {
        display: none;
    }

    .gauge-nav__indicator {
        display: none;
    }

    .hero__content {
        margin: 0 auto;
        padding: 1.5rem;
    }

    .clock-face {
        display: none;
    }

    .hero {
        min-height: 85vh;
    }

    .leistung-item {
        grid-template-columns: 38px 1fr auto;
    }

    .leistung-item__line {
        display: none;
    }

    .marken__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .werkstatt__timeline::before {
        left: 70px;
    }

    .timeline-node {
        grid-template-columns: 60px 16px 1fr;
        gap: 0.8rem;
    }

    .hour-row {
        grid-template-columns: 90px 1fr auto;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .gauge-nav__link-text {
        font-size: 0.62rem;
        letter-spacing: 0.06em;
    }

    .gauge-nav__link {
        padding: 0 0.5rem;
    }

    .hero__headline {
        font-size: 1.8rem;
    }

    .marken__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-logo {
        padding: 1.2rem 0.8rem;
        font-size: 0.82rem;
    }
}
