/* =========================================================================
   COMO – Art of Sushi & Asian Flavors
   Gemeinsames Design-System (Website + Konzept-Dokumente)
   Marke: Anthrazit + Kupfer/Gold · Display: Forum · Body: Inter (selbst gehostet)

   Klassen-Vokabular (für alle Seiten konsistent nutzen):
   Layout    .container .section .section--tight .grid .grid-2 .grid-3 .grid-4
   Marke     .eyebrow .section-title .lede .hairline .wordmark
   Buttons   .btn .btn--primary .btn--ghost .btn--block
   Nav       .nav .nav__inner .nav__links .nav__cta
   Hero      .hero .hero__bg .hero__inner
   Cards     .card .dish .dish__media .photo-frame .badge .tag
   Menü      .menu-cat .menu-item .menu-item__head .price .variant
   Doc       .doc .doc-hero .doc-body .callout .doc-table .toc .pill-row
   Footer    .footer
   Utility   .reveal (+ .in)  .center  .muted  .gold
   ========================================================================= */

/* Fonts werden direkt im <head> jeder Seite verlinkt (assets/fonts/fonts2.css + Preload),
   nicht per @import – spart eine serielle Request-Runde. */

:root {
  /* Surfaces */
  --bg:        #141009;
  --bg-2:      #18130b;
  --surface:   #211a10;
  --surface-2: #2a2114;
  --line:      rgba(200,146,63,0.20);
  --line-soft: rgba(200,146,63,0.10);

  /* Brand */
  --gold:        #c8923f;
  --gold-bright: #e7c282;
  --gold-deep:   #9a6b28;
  --cream:       #f3ead8;
  --cream-dim:   #cdbfa4;
  --muted:       #9a8d73;
  --wine:        #883330;
  --green:       #8cbf5c;

  /* Type */
  --display: 'Forum', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Geometry */
  --radius: 14px;
  --radius-lg: 22px;
  --section-y: clamp(54px, 8vw, 100px);   /* einheitlicher vertikaler Rhythmus (Mobile enger, Desktop luftiger) */
  --maxw: 1180px;
  --shadow: 0 24px 60px -28px rgba(0,0,0,.75);
  --shadow-gold: 0 18px 50px -24px rgba(200,146,63,.35);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--cream);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: .005em;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
/* warm ambient glows */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% -8%, rgba(200,146,63,.16), transparent 60%),
    radial-gradient(50% 45% at 8% 12%, rgba(136,51,48,.12), transparent 60%),
    radial-gradient(70% 60% at 50% 120%, rgba(200,146,63,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
/* grain */
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .045;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(200,146,63,.3); color: #fff; }

h1,h2,h3,h4 { font-family: var(--display); font-weight: 500; line-height: 1.08; margin: 0 0 .4em; letter-spacing: -.01em; }

/* ---------- Layout ---------- */
.container { width: min(var(--maxw), 92vw); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 132px) 0; position: relative; }
.section--tight { padding: clamp(40px,6vw,72px) 0; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

/* ---------- Brand bits ---------- */
.eyebrow {
  font-family: var(--body); font-weight: 600; font-size: .72rem;
  letter-spacing: .34em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: .7em; margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content:""; width:30px; height:1px; background: linear-gradient(90deg, var(--gold), transparent); }

.section-title { font-size: clamp(2rem, 4.4vw, 3.4rem); color: var(--cream); }
.section-title em { font-style: italic; color: var(--gold-bright); }
.lede { font-size: clamp(1.02rem,1.5vw,1.2rem); color: var(--cream-dim); max-width: 60ch; }
.muted { color: var(--muted); }
.gold { color: var(--gold-bright); }
.center { text-align: center; }
.hairline { height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--line), transparent); margin: 0; }

/* wordmark / logo */
.wordmark { font-family: var(--display); font-weight: 500; letter-spacing: .14em; display: inline-flex; align-items: baseline; gap: 0; line-height: 1; }
.wordmark b { font-weight: 500; }
.wordmark .ring {
  display: inline-grid; place-items: center; width: .92em; height: .92em; margin: 0 .02em;
  border: 2px solid var(--gold); border-radius: 50%; transform: translateY(.06em);
}
.wordmark .ring i { width: .26em; height: .26em; background: var(--gold); border-radius: 50%; font-style: normal; }
.wordmark__sub { display:block; font-family: var(--body); font-weight:600; font-size:.34em; letter-spacing:.42em; color: var(--cream-dim); text-transform: uppercase; margin-top:.5em; }
.nav-logo { height: 50px; width: auto; display: block; }
.footer .nav-logo { height: 56px; }
@media (max-width: 640px) { .nav__cta .btn--primary { display: none; } }
@media (max-width: 560px) { .nav-logo { height: 40px; } }

/* ---------- Buttons ---------- */
.btn {
  --pad: .92em 1.5em;
  display: inline-flex; align-items: center; gap: .6em; padding: var(--pad);
  font-family: var(--body); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 100px; border: 1px solid transparent; cursor: pointer; transition: .35s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
}
.btn--primary { background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep)); color: #1a1206; box-shadow: var(--shadow-gold); }
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn--ghost { border-color: var(--line); color: var(--cream); background: rgba(255,255,255,.015); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; transition: .4s; }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 10px 0; border-bottom: 1px solid transparent; transition: .4s;
}
.nav.scrolled { backdrop-filter: blur(14px); background: rgba(16,12,7,.82); }
.nav.scrolled .nav__inner { padding: 12px 0; border-color: var(--line-soft); }
.nav__brand { font-size: 1.5rem; }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a { font-size: .9rem; font-weight: 500; color: var(--cream-dim); position: relative; transition: .25s; }
.nav__links a:hover { color: var(--gold-bright); }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-6px; height:1px; width:0; background: var(--gold); transition:.3s; }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { font-weight: 700; color: var(--cream); font-size: .9rem; }
.nav__burger { display: none; background: none; border: 0; color: var(--cream); cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(231,194,130,.18), transparent 55%),
    radial-gradient(90% 80% at 12% 90%, rgba(136,51,48,.18), transparent 55%);
}
.hero__inner { position: relative; z-index: 2; padding: 120px 0 80px; }
.hero h1 { font-size: clamp(2.8rem, 8.5vw, 7rem); font-weight: 400; line-height: .98; letter-spacing: -.02em; }
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero__sub { max-width: 48ch; font-size: clamp(1.05rem,1.6vw,1.3rem); color: var(--cream-dim); margin: 1.4rem 0 2.2rem; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__meta { display:flex; gap: 28px; flex-wrap: wrap; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); color: var(--cream-dim); font-size: .9rem; }
.hero__meta b { color: var(--gold-bright); font-weight: 700; }
.scrollcue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--muted); font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; }
.scrollcue span { display:block; width:1px; height:38px; margin:10px auto 0; background:linear-gradient(var(--gold),transparent); animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0%,100%{opacity:.3; transform:scaleY(.6)} 50%{opacity:1; transform:scaleY(1)} }

/* ---------- Cards & dishes ---------- */
.card { background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 30px; transition: .4s; position: relative; overflow: hidden; }
.card:hover { border-color: var(--line); transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: 1.5rem; color: var(--cream); }

.dish { display: flex; flex-direction: column; }
.dish__media { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; }

/* labelled photo placeholder (prototype) */
.photo-frame {
  position: relative; height: 100%; min-height: 150px; display: grid; place-items: center;
  background:
    radial-gradient(80% 70% at 50% 30%, rgba(200,146,63,.16), transparent 70%),
    linear-gradient(160deg, #2c2316, #191309);
  border: 1px solid var(--line-soft); color: var(--cream-dim); text-align: center; overflow: hidden;
}
.photo-frame svg { width: 64px; height: 64px; opacity: .5; color: var(--gold); }
.photo-frame .pf-tag { position: absolute; top: 12px; left: 12px; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--line); padding: 4px 8px; border-radius: 100px; background: rgba(0,0,0,.25); }
.photo-frame .pf-name { position: absolute; bottom: 12px; left: 12px; right: 12px; font-family: var(--display); font-size: 1rem; color: var(--cream); }

/* badges / tags */
.badge { display:inline-flex; align-items:center; gap:.4em; font-family: var(--body); font-size:.62rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; padding:.3em .7em; border-radius:100px; }
.badge--premium { background: linear-gradient(135deg,var(--gold-bright),var(--gold-deep)); color:#1a1206; }
.badge--chef { background: rgba(136,51,48,.25); color: #e7a59a; border:1px solid rgba(136,51,48,.5); }
.badge--reco { background: rgba(200,146,63,.14); color: var(--gold-bright); border:1px solid var(--line); }

.tag { display:inline-flex; align-items:center; gap:.35em; font-size:.66rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:.22em .6em; border-radius:100px; border:1px solid; }
.tag--veg { color: var(--green); border-color: rgba(140,191,92,.45); }
.tag--vegan { color: #aee07e; border-color: rgba(140,191,92,.6); background: rgba(140,191,92,.08); }
.tag--spicy { color: #e88f5a; border-color: rgba(232,143,90,.45); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: 70px 0 40px; background: var(--bg-2); }
.footer__grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer h4 { font-family: var(--body); font-weight:700; font-size:.78rem; letter-spacing:.2em; text-transform:uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer a { color: var(--cream-dim); display:block; padding: 3px 0; transition:.2s; }
.footer a:hover { color: var(--gold-bright); }
.footer__bottom { display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-top: 48px; padding-top: 24px; border-top:1px solid var(--line-soft); color: var(--muted); font-size:.8rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{transition-delay:.08s}.reveal[data-d="2"]{transition-delay:.16s}.reveal[data-d="3"]{transition-delay:.24s}.reveal[data-d="4"]{transition-delay:.32s}
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1; transform:none; transition:none} .scrollcue span{animation:none} }

/* =========================================================================
   DOC PAGES (Konzept / Strategie) – schick & gut lesbar
   ========================================================================= */
.doc-hero { padding: clamp(70px,10vw,130px) 0 40px; position: relative; }
.doc-hero .kicker { color: var(--gold); letter-spacing:.3em; text-transform:uppercase; font-size:.74rem; font-weight:700; }
.doc-hero h1 { font-size: clamp(2.2rem,5.5vw,4rem); font-weight:400; margin-top:.5rem; }
.doc-hero h1 em { font-style: italic; color: var(--gold-bright); }
.doc-hero .doc-meta { margin-top: 1.4rem; color: var(--muted); font-size:.92rem; display:flex; gap:22px; flex-wrap:wrap; }
.doc-hero .doc-meta b { color: var(--cream-dim); font-weight:600; }

.doc-wrap { display:grid; grid-template-columns: 230px minmax(0,1fr); gap: 56px; align-items:start; padding-bottom: 120px; }
.toc { position: sticky; top: 90px; font-size:.86rem; }
.toc h5 { font-family: var(--body); text-transform:uppercase; letter-spacing:.2em; font-size:.68rem; color:var(--gold); margin:0 0 .9rem; }
.toc a { display:block; color: var(--cream-dim); padding:.32rem 0 .32rem .9rem; border-left:1px solid var(--line-soft); transition:.2s; }
.toc a:hover, .toc a.active { color: var(--gold-bright); border-color: var(--gold); }

.doc-body { max-width: 76ch; }
.doc-body h2 { font-size: clamp(1.5rem,3vw,2.1rem); color: var(--cream); margin-top: 2.6em; padding-top:.6em; }
.doc-body h2:first-child { margin-top: 0; }
.doc-body h3 { font-size: 1.25rem; color: var(--gold-bright); margin-top: 1.8em; font-weight:600; }
.doc-body p, .doc-body li { color: #ddd1bb; }
.doc-body strong { color: var(--cream); font-weight: 700; }
.doc-body a { color: var(--gold-bright); border-bottom:1px solid var(--line); }
.doc-body ul, .doc-body ol { padding-left: 1.2em; }
.doc-body li { margin: .4em 0; }
.doc-body li::marker { color: var(--gold); }
.doc-body blockquote { margin: 1.6em 0; padding: 1.1em 1.4em; border-left: 3px solid var(--gold); background: rgba(200,146,63,.06); border-radius: 0 12px 12px 0; color: var(--cream); font-style: italic; }

.callout { border:1px solid var(--line); background: linear-gradient(160deg, var(--surface), var(--bg-2)); border-radius: var(--radius); padding: 22px 26px; margin: 1.8em 0; }
.callout--gold { border-color: var(--line); background: rgba(200,146,63,.08); }
.callout--wine { border-color: rgba(136,51,48,.4); background: rgba(136,51,48,.1); }
.callout .callout__label { display:block; font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); font-weight:700; margin-bottom:.4rem; }

.doc-table { width:100%; border-collapse: collapse; margin: 1.6em 0; font-size:.92rem; }
.doc-table th { text-align:left; font-family:var(--body); font-weight:700; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); padding:.8em 1em; border-bottom:1px solid var(--line); }
.doc-table td { padding:.8em 1em; border-bottom:1px solid var(--line-soft); color:#ddd1bb; vertical-align: top; }
.doc-table tr:hover td { background: rgba(200,146,63,.04); }

.phase-list { list-style:none; padding:0; margin: 1.4em 0; }
.phase-list li { display:grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 1.1em 0; border-bottom:1px solid var(--line-soft); }
.phase-list .ph { font-family:var(--display); color: var(--gold-bright); font-size:1.05rem; }
.pill-row { display:flex; flex-wrap:wrap; gap:10px; margin: 1.2em 0; }
.pill-row .pill { font-size:.78rem; padding:.45em .9em; border:1px solid var(--line); border-radius:100px; color: var(--cream-dim); }

.doc-nav { display:flex; gap:14px; flex-wrap:wrap; align-items:center; padding: 14px 0; }
.doc-nav .back { color: var(--cream-dim); font-size:.85rem; }
.doc-nav .back:hover { color: var(--gold-bright); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .grid-3.keep-2, .grid-4.keep-2 { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav--open .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: flex-start; gap: 18px; padding: 22px 6vw 28px;
    background: rgba(16,12,7,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
  }
  .nav__burger { display: inline-flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .doc-wrap { grid-template-columns: 1fr; gap: 24px; }
  .toc { position: static; display:none; }
  .phase-list li { grid-template-columns: 1fr; gap: 4px; }
  .hero__meta { gap: 18px; }
}
@media (max-width: 560px) {
  .grid-3.keep-2, .grid-4.keep-2 { grid-template-columns: 1fr; }
  .nav__phone { display:none; }
}

/* ---------- Hinweisleiste (Biergarten) ---------- */
.notice-bar { background: linear-gradient(90deg, rgba(200,146,63,.18), rgba(200,146,63,.05)); border-bottom: 1px solid var(--line); }
.notice-bar__inner { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 8px 16px; font-size: .82rem; color: var(--cream); flex-wrap: wrap; text-align: center; }
.notice-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); flex: none; animation: ccpulse 2.2s ease-out infinite; }
.notice-bar a { color: var(--gold-bright); font-weight: 700; border-bottom: 1px solid var(--line); }
@keyframes ccpulse { 0% { box-shadow: 0 0 0 0 rgba(231,194,130,.6); } 70%, 100% { box-shadow: 0 0 0 8px rgba(231,194,130,0); } }
@media (prefers-reduced-motion: reduce) { .notice-bar .dot { animation: none; } }

/* ---------- Cookie / Consent ---------- */
.cc { position: fixed; left: 16px; bottom: 16px; z-index: 200; width: min(420px, calc(100vw - 32px)); background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px 22px; }
.cc h4 { margin: 0 0 .4rem; font-family: var(--display); font-weight: 500; font-size: 1.2rem; color: var(--cream); }
.cc p { margin: 0 0 1rem; color: var(--cream-dim); font-size: .85rem; line-height: 1.5; }
.cc p a { color: var(--gold-bright); }
.cc__row { display: flex; gap: 10px; flex-wrap: wrap; }
.cc .btn { font-size: .74rem; padding: .7em 1.1em; }

/* externes Embed erst nach Zustimmung (z. B. Karte) */
.consent-ph { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; text-align: center; padding: 24px; background: linear-gradient(160deg, #231b10, #120e07); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.consent-ph p { color: var(--cream-dim); font-size: .86rem; max-width: 34ch; margin: 0 0 14px; }
