:root {
    --bg: #faf6f0;
    --surface: #ffffff;
    --ink: #2b2622;
    --muted: #6f6660;
    --line: #e7ddd1;
    --accent: #9c1f1f;       /* deep Italian red */
    --accent-dark: #7a1717;
    --gold: #c79a3a;
    --shadow: 0 14px 40px rgba(43, 38, 34, 0.10);
    --radius: 14px;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: var(--accent); text-decoration: none; }
  a:hover { color: var(--accent-dark); text-decoration: underline; }
  .container {
    margin-inline: auto;
  }
  /* ---------- Header ---------- */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(20, 16, 14, 0.96);
    backdrop-filter: blur(6px);
    border-bottom: 3px solid var(--gold);
  }
  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 0.9rem;
    flex-wrap: wrap;
  }
  .brand { display: flex; flex-direction: column; line-height: 1; }
  .brand:hover { text-decoration: none; }
  .brand-mark {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: 1.9rem;
    color: #fff;
    letter-spacing: 0.5px;
  }
  .brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.25rem;
  }
  .top-nav {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  .top-nav a {
    color: #ece4da;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
  }
  .top-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }
  .top-nav a.is-active { background: var(--accent); color: #fff; }
  /* ---------- Hero ---------- */
  .hero {
    background: linear-gradient(rgba(20, 16, 14, 0.6), rgba(50, 80, 120, 1.2)), url(/user/pages/img/italian-banne.jpg) center / cover no-repeat;
    color: #fff;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #ffffff;
    font-size: 0.8rem;
    margin: 0 0 0.6rem;
  }
  .hero-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.05;
    margin: 0 auto 1.4rem;
    max-width: 16ch;
  }
  .hero-lead {
    max-width: 60ch;
    margin: 0 auto;
    font-size: 1.08rem;
    color: #ffffff;
  }
  .hero h1 {
    color: #ffffff;
}
  .hero p {
    font-size: .9rem;
    font-weight: 700;
    }
  /* ---------- Locations ---------- */
  .locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-block: clamp(3rem, 6vw, 4.5rem);
  }
  .location-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.8rem;
    overflow: hidden;
  }
  .location-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 2px solid var(--line);
    padding-bottom: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .location-head h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0;
  }
  .map-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    white-space: nowrap;
  }
  .map-link:hover { background: var(--accent); color: #fff; text-decoration: none; }
  .location-photo {
    margin: 0 0 1.2rem;
    border-radius: 10px;
    overflow: hidden;
  }
  .location-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .location-photo:hover img { transform: scale(1.04); }
  .muted { color: var(--muted); margin-top: 0; }
  .address {
    font-style: normal;
    border-left: 3px solid var(--gold);
    padding-left: 0.9rem;
    margin: 1.2rem 0;
  }
  .address strong { font-size: 1.05rem; }
  .phone .label {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-right: 0.4rem;
  }
  .phone a { font-weight: 600; font-size: 1.05rem; }
  .callout {
    background: #fbf2ef;
    border: 1px solid #f0d9d2;
    border-radius: 10px;
    padding: 1rem 1.1rem;
    margin: 1.2rem 0;
    font-size: 0.95rem;
  }
  .callout strong { color: var(--accent-dark); }
  .callout .note { margin: 0.6rem 0 0; color: var(--muted); font-size: 0.88rem; }
  .catering {
    font-weight: 600;
    color: var(--accent-dark);
  }
  /* ---------- Hours ---------- */
  .hours h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    color: var(--ink);
    margin: 1.4rem 0 0.5rem;
  }
  .hours ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px dashed var(--line);
  }
  .hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 0;
    border-bottom: 1px dashed var(--line);
  }
  .hours li span:first-child { color: var(--muted); }
  .hours li span:last-child { font-weight: 600; }
  /* ---------- Join ---------- */
  .join {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .join p {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
    font-size: 1.05rem;
  }
  /* ---------- Footer ---------- */
  .site-footer {
    background: #14100e;
    color: #cfc6bb;
    padding-block: 2rem;
    border-top: 3px solid var(--gold);
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.4rem;
    margin-bottom: 1rem;
  }
  .footer-nav a {
    color: #ece4da;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .footer-nav a:hover { color: var(--gold); }
  .copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #8a7f74;
    margin: 0;
  }
  /* ---------- Responsive ---------- */
  @media (max-width: 820px) {
    .locations { grid-template-columns: 1fr; }
    .site-header .container { justify-content: center; text-align: center; }
    .brand { align-items: center; }
  }
#header .logo img, #header .logo svg {
    display: inherit;
    height: 74px;
}
.prose {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(1.6rem, 4vw, 2.6rem);
    margin-block: clamp(2.5rem, 6vw, 4rem);
  }
  .prose h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 1.2rem;
  }
  .prose p {
    margin: 0 0 1.1rem;
    font-size: 1.05rem;
    color: var(--ink);
  }
  .prose p:last-of-type { margin-bottom: 0; }
  .prose a {
    font-weight: 600;
    border-bottom: 1px solid currentColor;
  }
  .prose a:hover { text-decoration: none; }
  .prose strong { color: var(--accent-dark); }
  /* fine print inside a prose block */
  .prose .fine-print {
    font-size: 0.85rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
    padding-top: 1rem;
    margin-top: 1.4rem;
  }
  /* download link styled as a button */
  .btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.6rem;
    padding: 0.7rem 1.4rem;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 999px;
    border-bottom: none;
    box-shadow: 0 8px 20px rgba(156, 31, 31, 0.25);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  .btn-download::before {
    content: "↓";
    font-size: 1.1em;
    line-height: 1;
  }
  .btn-download:hover {
    background: var(--accent-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(156, 31, 31, 0.32);
  }
  .simple-footer {
    text-align: center;
    padding: 0.9rem 1rem;
    line-height: 2;
  }
  .simple-footer a {
    color: var(--ink);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0.4rem;
  }
  .simple-footer a:hover { color: var(--accent); text-decoration: none; }
  .simple-footer .sep { color: var(--line); }
  #footer {
    padding: 1rem 1rem;
    text-align: center;
    color: #acb3c2;
}