/* ==========================================================================
   GOLDSTÜCK — Things & Drinks
   Stylesheet
   ========================================================================== */

/* Nunito Sans — self-hosted (see css/fonts/) instead of loaded from
   Google's servers, so no visitor IP address is sent to Google. */
@font-face {
  font-family: 'Nunito Sans';
  src: url('fonts/nunito-sans.ttf') format('truetype');
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('fonts/nunito-sans-italic.ttf') format('truetype');
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Color */
  --black:        #0c0b0a;
  --black-2:      #131210;
  --black-3:      #1a1815;
  --gold:         #d9a943;
  --gold-light:   #ecc978;
  --gold-dim:     #7a6435;
  --white:        #f6f3ee;
  --white-dim:    rgba(246, 243, 238, 0.66);
  --white-faint:  rgba(246, 243, 238, 0.38);
  --hairline:     rgba(217, 169, 67, 0.22);

  /* Cream — used for the partner wall so logos stay legible */
  --cream:          #f3ecdd;
  --cream-ink:      #211d17;
  --cream-ink-dim:  rgba(33, 29, 23, 0.64);
  --cream-hairline: rgba(33, 29, 23, 0.15);
  --cream-gold:     #7c5e22;

  /* Type */
  --font-display: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --gutter: 24px;
  --max-w: 1140px;
  --section-space: clamp(64px, 12vw, 128px);
}

@media (min-width: 720px) {
  :root { --gutter: 40px; }
}

/* -------------------------------------------------------------------------
   Reset / base
   ------------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------
   Signature motif — the twin dots from the Ü, used as a divider / marker
   ------------------------------------------------------------------------- */
.dots {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.dots::before,
.dots::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.divider {
  border: none;
  height: 1px;
  background: var(--hairline);
  margin: 0;
}

/* -------------------------------------------------------------------------
   Header / Nav
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(12, 11, 10, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 1px 0 var(--hairline);
}

.site-header .logo-mark {
  height: 104px;
  width: auto;
  opacity: 0;
  visibility: hidden;
  transition: height 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
}

.site-header.is-scrolled .logo-mark {
  height: 88px;
  opacity: 1;
  visibility: visible;
  transition: height 0.4s ease, opacity 0.4s ease;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--hairline);
  padding: 9px 16px;
  border-radius: 999px;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.header-cta:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(217, 169, 67, 0.08);
}
.header-cta svg { width: 14px; height: 14px; }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100svh;
  max-height: 760px;
  min-height: 460px;
  width: 100%;
  overflow: hidden;
  background: var(--black);
}

@media (min-width: 720px) and (max-height: 900px) {
  .hero { height: 82vh; max-height: 660px; }
}

.hero-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.is-active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,11,10,0.55) 0%, rgba(12,11,10,0.15) 28%, rgba(12,11,10,0.35) 62%, rgba(12,11,10,0.94) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--gutter);
}

.hero-logo {
  width: min(78vw, 420px);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.45));
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-faint);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll .line {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(246,243,238,0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dots button.is-active {
  background: var(--gold);
  transform: scale(1.35);
}

@media (min-width: 720px) {
  .hero-scroll { display: none; }
}

/* -------------------------------------------------------------------------
   Sections — generic rhythm
   ------------------------------------------------------------------------- */
section { position: relative; }

.section-pad {
  padding: var(--section-space) 0;
}

.section-head {
  max-width: 640px;
  margin: 0 0 34px;
}

.section-head h2 {
  font-size: clamp(30px, 5.4vw, 44px);
  margin-top: 14px;
  color: var(--white);
}

.section-head .eyebrow { margin-bottom: 0; }

.lede {
  font-size: 17px;
  color: var(--white-dim);
  max-width: 60ch;
}

.lede + .lede { margin-top: 1em; }

/* -------------------------------------------------------------------------
   Welcome
   ------------------------------------------------------------------------- */
.welcome {
  background: var(--black);
}

.welcome-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 860px) {
  .welcome-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .welcome-grid.reverse .welcome-media { order: 2; }
}

.welcome-media {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.welcome-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome-media::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px var(--hairline);
  pointer-events: none;
}

.text-block p {
  font-size: 16.5px;
  color: var(--white-dim);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 14px 26px;
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}
.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-solid {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
}

/* -------------------------------------------------------------------------
   Bar & Store sections — alternating full-bleed strip
   ------------------------------------------------------------------------- */
.feature {
  background: var(--black-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.feature-store {
  background: var(--black);
  border-bottom: 1px solid var(--hairline);
}

.feature-grid {
  display: grid;
  gap: 36px;
}

@media (min-width: 860px) {
  .feature-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    align-items: stretch;
  }
  .feature-grid .feature-media,
  .feature-grid .feature-media-duo { order: 2; }
  .feature-grid.media-left .feature-media,
  .feature-grid.media-left .feature-media-duo { order: 0; }
  .feature-grid.media-left .feature-text { order: 1; }
}

.feature-media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

/* Shorter media variant — used in the Bar section so the image doesn't
   stretch to match a much taller text column */
.feature-media--short {
  min-height: 0;
  height: 260px;
  align-self: start;
}
.feature-media--short img { height: 260px; min-height: 0; }

@media (min-width: 860px) {
  .feature-media--short { height: 420px; }
  .feature-media--short img { height: 420px; }
}

/* Two-up media variant — used in the Bar section to show the counter
   and the seating area side by side */
.feature-media-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.feature-text {
  padding: var(--section-space) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 860px) {
  .feature-text { padding: 72px 72px; }
}

.feature-text .section-head { margin-bottom: 22px; }

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.mini-tags span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  border: 1px solid var(--hairline);
  padding: 7px 13px;
  border-radius: 999px;
}

/* -------------------------------------------------------------------------
   Opening hours
   ------------------------------------------------------------------------- */
.hours {
  background: var(--black);
}

.hours-wrap {
  display: grid;
  gap: 48px;
}

@media (min-width: 860px) {
  .hours-wrap { grid-template-columns: 0.85fr 1.15fr; gap: 72px; }
}

.hours-list {
  border-top: 1px solid var(--hairline);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 16px;
}
.hours-row .day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}
.hours-row .time {
  color: var(--white-dim);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.hours-row.is-today {
  background: linear-gradient(90deg, rgba(217,169,67,0.09), transparent);
}
.hours-row.is-today .day { color: var(--gold-light); }
.hours-row.is-today .day::after {
  content: 'Heute';
  margin-left: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 3px 8px;
  border-radius: 999px;
  vertical-align: middle;
}
.hours-row .time.closed { color: var(--white-faint); font-style: italic; }

.hours-note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--white-faint);
}

.hours-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hours-card {
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 28px;
}
.hours-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--white);
}
.hours-card p { color: var(--white-dim); font-size: 15px; }
.hours-card .addr {
  display: block;
  margin-top: 14px;
  font-style: normal;
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* -------------------------------------------------------------------------
   Partners — cream section so the monochrome logos stay legible
   ------------------------------------------------------------------------- */
.partners {
  background: var(--black-2);
  border-top: 1px solid var(--hairline);
}

.partners--cream {
  background: var(--cream);
  border-top: none;
  border-bottom: 1px solid var(--cream-hairline);
}
.partners--cream .eyebrow { color: var(--cream-gold); }
.partners--cream .dots::before,
.partners--cream .dots::after { background: var(--cream-gold); }
.partners--cream .section-head h2 { color: var(--cream-ink); }
.partners--cream .lede { color: var(--cream-ink-dim); }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.partners--cream .partner-grid {
  border-top: 1px solid var(--cream-hairline);
  border-left: 1px solid var(--cream-hairline);
}

@media (min-width: 640px) {
  .partner-grid { grid-template-columns: repeat(4, 1fr); }
}

.partner-cell {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 128px;
  transition: background 0.3s ease;
}
.partner-cell:hover { background: rgba(217,169,67,0.06); }
.partners--cream .partner-cell {
  border-right: 1px solid var(--cream-hairline);
  border-bottom: 1px solid var(--cream-hairline);
}
.partners--cream .partner-cell:hover { background: rgba(156,122,46,0.08); }

.partner-logo {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.86;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.partner-cell:hover .partner-logo {
  opacity: 1;
  transform: scale(1.04);
}

@media (min-width: 640px) {
  .partner-logo { max-height: 64px; }
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--hairline);
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 36px;
}

@media (min-width: 720px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo { height: 30px; width: auto; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 13px;
}
.footer-links a {
  color: var(--white-dim);
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white-dim);
  font-size: 13px;
  border: 1px solid var(--hairline);
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.25s ease;
}
.footer-social:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}
.footer-social svg { width: 15px; height: 15px; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--white-faint);
}

@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* -------------------------------------------------------------------------
   Reveal-on-scroll
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------------------
   Impressum page
   ------------------------------------------------------------------------- */
.legal-page {
  padding: 140px 0 100px;
  min-height: 100vh;
}
.legal-page h1 {
  font-size: clamp(32px, 6vw, 46px);
  margin-bottom: 8px;
}
.legal-page .eyebrow { margin-bottom: 18px; }
.legal-block {
  max-width: 720px;
  margin-top: 48px;
}
.legal-block h2 {
  font-size: 19px;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.legal-block p, .legal-block li {
  color: var(--white-dim);
  font-size: 15px;
  margin-bottom: 8px;
}
.legal-block a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.legal-block ul { padding-left: 20px; }
.placeholder {
  color: var(--gold-light);
  background: rgba(217,169,67,0.1);
  padding: 1px 6px;
  border-radius: 3px;
  font-style: normal;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.back-link:hover { color: var(--gold-light); }
