:root {
  --bg: #0f1114;
  --card: #1d2128;
  --text: #f2f2f2;
  --muted: #b8bec8;
  --line: rgba(255,255,255,.11);
  --accent: #d59b37;
  --max: 1080px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15,17,20,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  text-decoration: none;
}
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 12px; }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.languages { display: flex; gap: 6px; }
.languages a {
  min-width: 38px;
  padding: 7px 9px;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.languages a[aria-current="page"] { color: #17110a; background: #f0c36d; border-color: #f0c36d; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  background: rgba(255,255,255,.04);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f0c36d);
  color: #15110a;
  border-color: transparent;
}
.hero {
  padding: 74px 0 42px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.34), rgba(15,17,20,.96)),
    url('/images/hotel-ampezzo-biker-hotel-moto-parcheggio.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  color: #f0c36d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1 { max-width: 820px; margin: 14px 0 16px; font-size: clamp(34px, 5vw, 58px); line-height: 1.04; }
.lead { max-width: 780px; color: var(--muted); font-size: 18px; margin: 0; }
section { padding: 52px 0; }
h2 { font-size: clamp(26px, 4vw, 38px); line-height: 1.12; margin: 0 0 14px; }
p { margin: 0 0 14px; }
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}
.logo-box {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.details { width: 100%; border-collapse: collapse; margin-top: 18px; }
.details th, .details td {
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.details th { width: 260px; color: #f0c36d; background: rgba(255,255,255,.03); }
.works {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.works li {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding: 14px 16px;
}
.poster {
  width: 100%;
  height: min(76vh, 880px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-top: 18px;
}
.note { color: var(--muted); font-size: 14px; }
.footer {
  padding: 34px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #0b0d10;
  font-size: 14px;
}
.footer a { color: var(--text); }
@media (max-width: 760px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 12px 0; }
  .nav-actions { justify-content: flex-start; }
  .logo-grid, .works { grid-template-columns: 1fr; }
  .details th, .details td { display: block; width: 100%; }
  .poster { height: 520px; }
}
