/* Supplì Bros - Fiumicino. Palette taken from the venue's own logo: deep olive ink, fryer
   orange, paper cream. */
:root {
  --ink: #2B322B;
  --ink-soft: #3C453B;
  --paper: #FBF5EA;
  --paper-2: #F3E9D8;
  --orange: #F08A2E;
  --orange-dark: #C96A16;
  --text: #232823;
  --muted: #6A7268;
  --line: rgba(43, 50, 43, .16);
  --shell: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 400 17px/1.65 Karla, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: "Bricolage Grotesque", Karla, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.05rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
p { margin: 0 0 1em; }

a { color: inherit; }
a:focus-visible, .btn:focus-visible, .skip:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

.shell { width: min(100% - 2.5rem, var(--shell)); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper); padding: .7rem 1rem; z-index: 20;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 10;
  background: var(--ink);
  color: var(--paper);
}
.site-head__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 66px;
  flex-wrap: wrap;
}
.wordmark {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: 1.35rem; letter-spacing: -.03em;
  text-decoration: none; color: var(--paper);
  margin-right: auto;
}
.wordmark span { color: var(--orange); }
.site-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.site-nav a {
  text-decoration: none; font-size: .95rem; font-weight: 500;
  color: rgba(251, 245, 234, .82);
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: #fff; border-bottom-color: var(--orange); }
.head-tel {
  text-decoration: none; font-weight: 700; font-size: .95rem;
  color: var(--ink); background: var(--orange);
  padding: .5rem .9rem; border-radius: 999px; white-space: nowrap;
}
.head-tel:hover { background: #ffa254; }

/* ---------- hero ---------- */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 4rem); }
.hero__inner {
  display: grid; gap: clamp(1.8rem, 4vw, 3.4rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
}
.eyebrow {
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-dark); font-weight: 700; margin-bottom: 1rem;
}
h1 em { font-style: normal; color: var(--orange-dark); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 46ch; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.2rem; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: 1rem;
  padding: .82rem 1.4rem; border-radius: 999px; border: 2px solid var(--ink);
  transition: background-color .15s ease, color .15s ease;
}
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.stars { display: flex; align-items: center; gap: .5rem; font-size: .95rem; color: var(--muted); margin: 0; }
.stars strong { color: var(--text); }
.hero__shot { margin: 0; }
.hero__shot img {
  border-radius: 18px;
  box-shadow: 0 24px 50px -28px rgba(43, 50, 43, .6);
  width: 100%;
}

/* ---------- bands ---------- */
.band { padding: clamp(2.8rem, 6vw, 5rem) 0; }
.band--paper { background: var(--paper-2); }
.band--ink { background: var(--ink); color: var(--paper); }
.band--ink h2 { color: #fff; }
.band--ink .band__head p { color: rgba(251, 245, 234, .78); }
.band__head { max-width: 58ch; margin-bottom: 2.2rem; }
.band__head p { color: var(--muted); margin: 0; }

.duo {
  display: grid; gap: clamp(1.8rem, 4vw, 3.2rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: center;
}
.duo--rev .duo__text { order: 2; }
.duo__text h2 { max-width: 18ch; }
.duo__text p { color: var(--ink-soft); max-width: 52ch; }
.note { font-size: .97rem; color: var(--muted); border-left: 3px solid var(--orange); padding-left: 1rem; }
.duo__shot { margin: 0; }
.duo__shot img { border-radius: 18px; width: 100%; }
.duo__shot figcaption { font-size: .88rem; color: var(--muted); margin-top: .6rem; }

/* ---------- carta ---------- */
.carta {
  display: grid; gap: clamp(1.6rem, 3vw, 2.6rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.carta__col h3 { color: var(--orange-dark); margin-top: 0; }
.carta__col h3 + .list { margin-bottom: 2rem; }
.carta__col h3:not(:first-child) { margin-top: 2rem; }
.list { list-style: none; margin: 0; padding: 0; }
.list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 .8rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}
.list__name { font-weight: 700; }
.list__price { font-weight: 700; color: var(--ink-soft); white-space: nowrap; font-variant-numeric: tabular-nums; }
.list__desc { grid-column: 1 / -1; font-size: .93rem; color: var(--muted); }
.carta__foot { margin-top: 2.2rem; color: var(--ink-soft); max-width: 60ch; }
.link { color: var(--orange-dark); font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* ---------- gallery ---------- */
.gallery {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.gallery img { border-radius: 14px; aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }

/* ---------- info ---------- */
.addr { font-size: 1.15rem; }
.facts { margin: 0 0 1.6rem; display: grid; gap: .9rem; }
.facts div { display: grid; grid-template-columns: minmax(140px, auto) 1fr; gap: .3rem 1.2rem; }
.facts dt { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; padding-top: .15rem; }
.facts dd { margin: 0; }
.facts a { color: var(--orange-dark); font-weight: 700; }

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: rgba(251, 245, 234, .82); padding: 2.5rem 0; }
.site-foot__inner { display: grid; gap: .4rem; }
.site-foot p { margin: 0; font-size: .95rem; }
.wordmark--foot { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--paper); margin-bottom: .4rem; }
.site-foot a { color: var(--orange); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero__inner, .duo { grid-template-columns: 1fr; }
  .duo--rev .duo__text { order: 0; }
  .hero__shot { order: -1; }
  .site-head__inner { min-height: 0; padding: .8rem 0; }
  .site-nav { order: 3; width: 100%; gap: 1rem; }
  .wordmark { margin-right: 1rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .facts div { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .btn { width: 100%; text-align: center; }
}
