/* ============================================================
   CAFEBAR — styles.css
   Dark Dining palette · Fresh Modern typography
   ============================================================ */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  /* Colors */
  --c-bg:          #1C1917;
  --c-card:        #292524;
  --c-muted:       #44403C;
  --c-border:      #57534E;
  --c-primary:     #991B1B;
  --c-primary-h:   #7F1D1D;
  --c-secondary:   #78350F;
  --c-accent:      #D97706;
  --c-accent-h:    #B45309;
  --c-fg:          #FAFAF9;
  --c-fg-muted:    #A8A29E;
  --c-on-primary:  #FFFFFF;
  --c-on-accent:   #FFFFFF;

  /* Typography */
  --font-heading:  'Poppins', 'Poppins-Fallback', system-ui, sans-serif;
  --font-body:     'Inter', 'Inter-Fallback', system-ui, sans-serif;

  /* Scale (perfect fourth 1.333) */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.5rem;
  --text-4xl:  clamp(2.5rem, 5vw + 1rem, 4rem);
  --text-hero: clamp(3rem, 7vw + 1rem, 5.5rem);

  /* Spacing (4pt base) */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* Rhythm */
  --line-body:    1.65;
  --line-heading: 1.15;

  /* Motion */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:  150ms;
  --dur-mid:   280ms;
  --dur-slow:  450ms;

  /* Radii */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(0% 0.01 30 / 0.4);
  --shadow-md: 0 4px 16px oklch(0% 0.01 30 / 0.5);
  --shadow-lg: 0 8px 32px oklch(0% 0.01 30 / 0.6);

  /* Header height */
  --header-h: 72px;
}

/* Fallback metrics */
@font-face {
  font-family: 'Poppins-Fallback';
  src: local('Arial');
  size-adjust: 110%;
  ascent-override: 90%;
  descent-override: 22%;
}
@font-face {
  font-family: 'Inter-Fallback';
  src: local('Arial');
  size-adjust: 107%;
  ascent-override: 90%;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: calc(var(--header-h) + 16px);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  font-optical-sizing: auto;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: var(--line-body);
  color: var(--c-fg);
  background-color: var(--c-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { display: block; }

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

ul, ol { list-style: none; }

address { font-style: normal; }

/* ── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--c-accent);
  color: var(--c-on-accent);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-md);
  font-weight: 600;
  z-index: 1000;
  transition: top var(--dur-fast);
}
.skip-link:focus { top: var(--sp-4); }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* ── Shared Section Styles ───────────────────────────────── */
.section {
  padding-block: var(--sp-24);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-3);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--line-heading);
  color: var(--c-fg);
  text-wrap: balance;
  margin-bottom: var(--sp-6);
}

.section-heading.centered { text-align: center; }

.section-body {
  font-size: var(--text-base);
  color: var(--c-fg-muted);
  line-height: var(--line-body);
  max-width: 58ch;
  margin-bottom: var(--sp-5);
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-intro {
  font-size: var(--text-lg);
  color: var(--c-fg-muted);
  max-width: 52ch;
  margin-inline: auto;
  line-height: var(--line-body);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background-color var(--dur-fast) var(--ease-out-quart),
    color var(--dur-fast) var(--ease-out-quart),
    border-color var(--dur-fast) var(--ease-out-quart),
    transform var(--dur-fast) var(--ease-out-quart),
    box-shadow var(--dur-fast) var(--ease-out-quart);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background-color: var(--c-primary);
  color: var(--c-on-primary);
  border-color: var(--c-primary);
}
.btn-primary:hover {
  background-color: var(--c-primary-h);
  border-color: var(--c-primary-h);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background-color: transparent;
  color: var(--c-fg);
  border-color: var(--c-border);
}
.btn-ghost:hover {
  border-color: var(--c-fg-muted);
  background-color: oklch(100% 0 0 / 0.05);
  transform: translateY(-1px);
}
.btn-ghost:active { transform: translateY(0); }

.btn-large {
  padding: var(--sp-4) var(--sp-12);
  font-size: var(--text-base);
  min-height: 52px;
}

.btn:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  background-color: oklch(from #1C1917 l c h / 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--dur-mid) var(--ease-out-quart);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}
.logo:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--c-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  border-radius: var(--r-sm);
  line-height: 1;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--c-fg);
  letter-spacing: -0.01em;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-fg-muted);
  text-decoration: none;
  padding-block: var(--sp-2);
  transition: color var(--dur-fast) var(--ease-out-quart);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--c-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-mid) var(--ease-out-quart);
  border-radius: var(--r-full);
}
.nav-link:hover { color: var(--c-fg); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

.nav-cta {
  background-color: var(--c-primary);
  color: var(--c-on-primary);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-weight: 600;
  transition:
    background-color var(--dur-fast) var(--ease-out-quart),
    transform var(--dur-fast) var(--ease-out-quart);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background-color: var(--c-primary-h);
  color: var(--c-on-primary);
  transform: translateY(-1px);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.burger:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}
.burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--c-fg);
  border-radius: 2px;
  transition: transform var(--dur-mid) var(--ease-out-quart),
              opacity var(--dur-fast);
  transform-origin: center;
}

.burger.is-open .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open .burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background-color: var(--c-bg);
  z-index: 199;
  display: flex;
  align-items: flex-start;
  padding: var(--sp-10) var(--sp-6);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out-quart);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  width: 100%;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--c-fg);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--dur-fast) var(--ease-out-quart),
              padding-left var(--dur-mid) var(--ease-out-quart);
}
.mobile-nav-link:hover {
  color: var(--c-accent);
  padding-left: var(--sp-3);
}
.mobile-nav-link:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: calc(var(--header-h) + var(--sp-16));
  padding-bottom: var(--sp-20);
  overflow: hidden;
}

/* Subtle textured background pattern */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, oklch(30% 0.05 30 / 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, oklch(25% 0.08 50 / 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  opacity: 0;
  animation: fadeUp 600ms var(--ease-out-expo) 100ms forwards;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--c-border);
}

.eyebrow-text {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-fg-muted);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-fg);
  text-wrap: balance;
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeUp 700ms var(--ease-out-expo) 200ms forwards;
}

.hero-heading-accent {
  color: var(--c-accent);
  display: block;
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--c-fg-muted);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: var(--sp-10);
  opacity: 0;
  animation: fadeUp 700ms var(--ease-out-expo) 350ms forwards;
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--sp-10);
  opacity: 0;
  animation: fadeUp 700ms var(--ease-out-expo) 450ms forwards;
}

.hero-divider {
  opacity: 0;
  animation: fadeIn 600ms var(--ease-out-quart) 650ms forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 600ms var(--ease-out-quart) 900ms forwards;
}

.scroll-dot {
  animation: scrollBounce 2.5s ease-in-out 1200ms infinite;
}

@keyframes scrollBounce {
  0%, 100% { cy: 9; opacity: 1; }
  50%       { cy: 18; opacity: 0.3; }
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Intersection observer reveals */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease-out-quart),
              transform var(--dur-slow) var(--ease-out-quart);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Intro Bar ────────────────────────────────────────────── */
.intro-bar {
  background-color: var(--c-card);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--sp-5);
}

.intro-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.intro-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-fg-muted);
}

.intro-icon {
  color: var(--c-accent);
  flex-shrink: 0;
}

.intro-divider {
  width: 1px;
  height: 24px;
  background-color: var(--c-border);
  flex-shrink: 0;
}

/* ── Rösterei ─────────────────────────────────────────────── */
.roesterei {
  background-color: var(--c-bg);
}

.roesterei-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.roesterei-details {
  margin-top: var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.detail-item {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}

.detail-number {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.05em;
  line-height: 1.8;
  flex-shrink: 0;
  min-width: 28px;
}

.detail-item strong {
  display: block;
  font-weight: 600;
  color: var(--c-fg);
  font-size: var(--text-base);
  margin-bottom: var(--sp-1);
}

.detail-item p {
  font-size: var(--text-sm);
  color: var(--c-fg-muted);
  line-height: 1.5;
  margin: 0;
}

/* Rösterei Visual */
.roesterei-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.roesterei-card {
  width: 320px;
  height: 320px;
  background-color: var(--c-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.roesterei-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, oklch(40% 0.1 50 / 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.roesterei-card-inner {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coffee-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
}

.coffee-ring-1 {
  width: 200px;
  height: 200px;
  border-width: 1px;
  border-color: var(--c-border);
  animation: rotate 40s linear infinite;
}

.coffee-ring-2 {
  width: 140px;
  height: 140px;
  border-width: 2px;
  border-color: var(--c-secondary);
  border-style: dashed;
  animation: rotate 25s linear infinite reverse;
}

.coffee-ring-3 {
  width: 80px;
  height: 80px;
  border-width: 2px;
  border-color: var(--c-accent);
  animation: rotate 15s linear infinite;
}

.coffee-badge {
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-5);
}

.coffee-badge-text {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--c-fg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.coffee-badge-sub {
  display: block;
  font-size: var(--text-xs);
  color: var(--c-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--sp-1);
}

/* ── Angebot ──────────────────────────────────────────────── */
.angebot {
  background-color: var(--c-card);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.angebot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.angebot-card {
  background-color: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition:
    border-color var(--dur-mid) var(--ease-out-quart),
    transform var(--dur-mid) var(--ease-out-quart),
    box-shadow var(--dur-mid) var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}

.angebot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--c-border);
  transition: background-color var(--dur-mid) var(--ease-out-quart);
}

.angebot-card:hover {
  border-color: var(--c-muted);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.angebot-card:hover::before {
  background-color: var(--c-accent);
}

.angebot-card--featured {
  border-color: var(--c-secondary);
}

.angebot-card--featured::before {
  background-color: var(--c-accent);
}

.angebot-card-accent {
  color: var(--c-accent);
  margin-bottom: var(--sp-2);
}

.angebot-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-fg);
  line-height: var(--line-heading);
}

.angebot-card-text {
  font-size: var(--text-sm);
  color: var(--c-fg-muted);
  line-height: 1.65;
  flex: 1;
}

.angebot-card-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-accent);
  background-color: oklch(from #D97706 l c h / 0.1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  align-self: flex-start;
  margin-top: auto;
}

/* ── Über uns ─────────────────────────────────────────────── */
.ueber-uns {
  background-color: var(--c-bg);
}

.ueber-uns-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-20);
  align-items: center;
}

/* Portrait */
.portrait-frame {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}

.portrait-initials {
  width: 220px;
  height: 220px;
  background-color: var(--c-card);
  border: 2px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--c-fg-muted);
  letter-spacing: 0.02em;
}

.portrait-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed var(--c-border);
  animation: rotate 30s linear infinite;
}

.portrait-ring::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  background-color: var(--c-accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Signature */
.owner-sig {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.sig-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-fg);
}

.sig-role {
  font-size: var(--text-sm);
  color: var(--c-accent);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ── Kontakt ──────────────────────────────────────────────── */
.kontakt {
  background-color: var(--c-card);
  border-top: 1px solid var(--c-border);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-16);
}

.kontakt-card {
  background-color: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: flex-start;
  transition: border-color var(--dur-mid) var(--ease-out-quart),
              transform var(--dur-mid) var(--ease-out-quart);
}

.kontakt-card:hover {
  border-color: var(--c-muted);
  transform: translateY(-2px);
}

.kontakt-icon {
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: oklch(from #D97706 l c h / 0.1);
  border-radius: var(--r-md);
}

.kontakt-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-fg);
}

.kontakt-address {
  font-size: var(--text-sm);
  color: var(--c-fg-muted);
  line-height: 1.7;
}

.kontakt-link {
  font-size: var(--text-sm);
  color: var(--c-fg-muted);
  transition: color var(--dur-fast) var(--ease-out-quart);
  text-decoration: none;
}

.kontakt-link:hover {
  color: var(--c-accent);
  text-decoration: underline;
}

.kontakt-link:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.kontakt-cta-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.kontakt-cta-text {
  font-size: var(--text-lg);
  color: var(--c-fg-muted);
  max-width: 50ch;
  line-height: 1.65;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background-color: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding-block: var(--sp-10);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--c-fg);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--c-fg-muted);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--c-fg-muted);
  transition: color var(--dur-fast) var(--ease-out-quart);
  text-decoration: none;
}

.footer-link:hover { color: var(--c-fg); text-decoration: underline; }
.footer-link:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.footer-sep {
  color: var(--c-border);
}

.ai-disclosure {
  font-size: var(--text-xs);
  color: var(--c-fg-muted);
  opacity: 0.6;
  max-width: 50ch;
  text-align: center;
  line-height: 1.5;
  margin-top: var(--sp-2);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .roesterei-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

  .roesterei-visual {
    order: -1;
  }

  .roesterei-card {
    width: 260px;
    height: 260px;
  }

  .coffee-ring-1 { width: 160px; height: 160px; }
  .coffee-ring-2 { width: 110px; height: 110px; }
  .coffee-ring-3 { width: 60px;  height: 60px; }

  .ueber-uns-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

  .portrait-frame {
    margin-inline: auto;
  }

  .ueber-uns-text .section-body,
  .ueber-uns-text .section-heading {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section { padding-block: var(--sp-16); }

  .main-nav { display: none; }
  .burger   { display: flex; }

  .section-heading {
    font-size: var(--text-2xl);
  }

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

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

  .intro-bar-inner {
    flex-direction: column;
    gap: var(--sp-4);
  }

  .intro-divider {
    width: 40px;
    height: 1px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: var(--sp-5);
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .angebot-card,
  .kontakt-card {
    padding: var(--sp-6);
  }
}

/* ── Reduced Motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-heading,
  .hero-sub,
  .hero-eyebrow,
  .hero-actions,
  .hero-divider,
  .hero-scroll-hint {
    opacity: 1;
    transform: none;
  }
}

/* ── Pointer fine (mouse) ─────────────────────────────────── */
@media (hover: none) {
  .angebot-card:hover,
  .kontakt-card:hover {
    transform: none;
  }
}
