/* === SUSHIBAR ROSTOCK — shared styles for legal subpages === */

:root {
    --bg: #1a1614;
    --bg-alt: #221d1a;
    --gold: #d4a85e;
    --text: #ece7df;
    --text-mute: #9c948a;
    --line: rgba(212, 168, 94, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--gold); color: var(--bg); }

/* === NAV === */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 3rem;
    z-index: 100;
    background: rgba(26, 22, 20, 0.85);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--line);
    transition: padding .4s ease, background .4s ease;
}

.nav.scrolled {
    padding: 1rem 3rem;
    background: rgba(26, 22, 20, 0.95);
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.nav-brand img {
    height: 34px;
    width: auto;
    transition: height .4s ease;
}
.nav.scrolled .nav-brand img { height: 28px; }

.nav-links { display: flex; gap: 2.4rem; }

.nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 400;
    transition: color .3s ease;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .35s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* === PAGE HERO === */
.page-hero {
    min-height: 56vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9rem 1.5rem 4rem;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(212,168,94,0.10), transparent 60%),
        var(--bg);
    position: relative;
    border-bottom: 1px solid var(--line);
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 22vh; left: 50%;
    transform: translateX(-50%);
    width: 1px; height: 60px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold);
    line-height: 1;
}

.page-hero .eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
    padding-left: 0.45em;
}

.page-hero .eyebrow::before {
    content: "";
    display: inline-block;
    width: 30px; height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 0.9rem;
    transform: translateY(-2px);
}

.page-hero .subtitle {
    margin-top: 1.4rem;
    color: var(--text-mute);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* === PROSE === */
.prose {
    padding: 5rem 1.5rem 7rem;
}

.container.narrow {
    max-width: 760px;
    margin: 0 auto;
}

.prose h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.6vw, 1.9rem);
    font-weight: 600;
    color: var(--gold);
    margin: 3rem 0 1.1rem;
    letter-spacing: 0.02em;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 2rem 0 0.6rem;
}

.prose p {
    color: var(--text-mute);
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

.prose p strong {
    color: var(--text);
    font-weight: 500;
}

.prose a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: var(--line);
    text-underline-offset: 4px;
    transition: text-decoration-color .3s ease, color .3s ease;
}

.prose a:hover { text-decoration-color: var(--gold); }

.prose ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
}

.prose ul li {
    color: var(--text-mute);
    font-size: 0.98rem;
    line-height: 1.85;
    padding-left: 1.6rem;
    position: relative;
    margin-bottom: 0.4rem;
}

.prose ul li::before {
    content: "·";
    color: var(--gold);
    position: absolute;
    left: 0.5rem;
    font-size: 1.4rem;
    line-height: 1;
    top: 0.05em;
}

/* === FOOTER === */
.footer {
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--line);
    background: var(--bg);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.footer-brand img { height: 28px; width: auto; }

.footer p {
    color: var(--text-mute);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.footer ul {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.footer ul a {
    color: var(--text-mute);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color .3s ease;
}
.footer ul a:hover { color: var(--gold); }

/* === RESPONSIVE === */
@media (max-width: 720px) {
    .nav { padding: 1rem 1.4rem; }
    .nav.scrolled { padding: 0.8rem 1.4rem; }
    .nav-links { display: none; }
    .page-hero { padding: 8rem 1.4rem 3.5rem; min-height: 44vh; }
    .prose { padding: 3.5rem 1.4rem 5rem; }
    .footer-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
