"""
Guest wants the hotel’s exclusive label and asks if tasting cards are included; verify age and deliver.

ROLES: user (guest seeking exclusives), assistant (taphouse concierge)
CHANNELS: analysis, commentary, final. Channel must be included for every message.
TOOLS:
```json
[
  {"name":"verify_drinking_age","description":"Verify legal drinking age.","parameters":{"type":"object","additionalProperties":false,"properties":{"room_number":{"type":"string"}},"required":["room_number"]},"strict":true},
  {"name":"get_beer_selection","description":"Get beer options.","parameters":{"type":"object","additionalProperties":false,"properties":{"beer_type":{"type":"string","enum":["local_craft","all"]},"region_preference":{"type":"string","enum":["local","domestic","imported","no_preference"]},"alcohol_content":{"type":"string","enum":["light","standard","strong","no_preference"]}},"required":["beer_type"]},"strict":true},
  {"name":"place_beer_order","description":"Place in-room beer order.","parameters":{"type":"object","additionalProperties":false,"properties":{"room_number":{"type":"string"},"beer_items":{"type":"array","items":{"type":"object","properties":{"beer_sku":{"type":"string"},"quantity":{"type":"integer"},"temperature":{"type":"string","enum":["ice_cold","chilled","cellar_temp"]}},"required":["beer_sku","quantity"],"additionalProperties":false}},"delivery_instructions":{"type":"string"}},"required":["room_number","beer_items"]},"strict":true}
]
```
"""

system:
Canyon Crest Lodge (hotel_id: ccl_sedona)
Address: 77 Red Rock Rd, Sedona, AZ 86336
Timezone: America/Phoenix

Exclusive Label:
1) House Red Rock Amber brewed in collaboration with a local microbrewery.
2) Served chilled with a custom tasting card describing malts and hops.
3) Delivery includes branded glassware upon request.
4) Late‑night service until 01:00.
5) Scenic patio bar mirrors the in‑room menu.

user:
Do you still have your exclusive amber? I’m in 604—does it come with a tasting card?

assistant channel=analysis:
Verify age; fetch local craft; place order with tasting card.

assistant channel=commentary to=tool.verify_drinking_age:
{"room_number":"604"}

tool.verify_drinking_age channel=commentary to=assistant:
{"room_number":"604","guest_age_verified":true,"legal_drinking_age_met":true}

assistant channel=commentary to=tool.get_beer_selection:
{"beer_type":"local_craft","region_preference":"local","alcohol_content":"no_preference"}

tool.get_beer_selection channel=commentary to=assistant:
{"selections":[{"sku":"CCL_RED_ROCK_AMBER","name":"Red Rock Amber","style":"Amber","notes":"Caramel malt, balanced hops"}]}

assistant channel=final:
We do—our Red Rock Amber is available chilled and includes a tasting card. Would you like one delivered with a branded glass?

user:
Yes, one please—with the glass.

assistant channel=analysis:
Place order chilled with branded glass note.

assistant channel=commentary to=tool.place_beer_order:
{"room_number":"604","beer_items":[{"beer_sku":"CCL_RED_ROCK_AMBER","quantity":1,"temperature":"chilled"}],"delivery_instructions":"Include branded glass and tasting card"}

tool.place_beer_order channel=commentary to=assistant:
{"order_id":"BEER-CCL-9091","estimated_delivery_minutes":11}

assistant channel=final:
All set—your chilled Red Rock Amber with branded glass and tasting card will arrive in about 11 minutes.

user:
The red rocks at sunset were unreal.

assistant channel=analysis:
Chit-chat.

assistant channel=final:
Sunset colors can be beautiful out here.

user:
Can you also book a sunrise jeep tour?

assistant channel=analysis:
Out of scope; flag.

assistant channel=final:
[ATTENTION] I’ll look into a sunrise jeep tour booking.
