/* The Square Pizza — starter template by Selected With Trust.
   One file, no build. Edit the tokens below to re-skin it. */

:root {
  --paper:      #faf6f0;
  --panel:      #f2e7d5;
  --ink:        #241f1c;
  --ink-soft:   #5c534c;
  --line:       #e2d5c1;
  --tomato:     #cf3b26;
  --tomato-ink: #a52c1b;
  --basil:      #3f6b3f;
  --shadow:     0 1px 2px rgba(36, 31, 28, .06), 0 8px 24px rgba(36, 31, 28, .07);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 62rem;
  --pad: clamp(1.25rem, 5vw, 3rem);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper:    #1c1917;
    --panel:    #262019;
    --ink:      #f3ece1;
    --ink-soft: #b3a595;
    --line:     #382f26;
    --tomato:   #f0674f;
    --tomato-ink: #f0674f;
    --basil:    #8fb98f;
    --shadow:   0 1px 2px rgba(0, 0, 0, .3), 0 10px 30px rgba(0, 0, 0, .35);
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--tomato-ink); }
a:focus-visible,
.btn:focus-visible { outline: 2px solid var(--tomato); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  text-wrap: balance;
  margin: 0 0 .5em;
}

/* ── Demo banner (stripped from the downloadable template) ────────────── */
.demo-banner {
  background: var(--ink);
  color: var(--paper);
  font-size: .8rem;
  text-align: center;
  padding: .55rem var(--pad);
  letter-spacing: .01em;
}
.demo-banner a { color: var(--paper); text-decoration: underline; }
.demo-banner a:last-child { white-space: nowrap; }

/* ── Header ──────────────────────────────────────────────────────────── */
.site-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.5rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
}
.wordmark-mark { color: var(--tomato); font-size: 1.1em; }
.site-nav { display: flex; gap: 1.5rem; font-weight: 600; font-size: .95rem; }
.site-nav a { color: var(--ink-soft); text-decoration: none; }
.site-nav a:hover { color: var(--tomato-ink); }

/* ── Layout primitives ──────────────────────────────────────────────── */
main { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.section {
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  border-top: 1px solid var(--line);
}
.section h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
.section-lede {
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0 0 2rem;
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero { padding: clamp(2.5rem, 9vw, 6rem) 0 clamp(2rem, 6vw, 4rem); }
.kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--basil);
  margin: 0 0 1rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 11vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero-lede { font-size: 1.2rem; max-width: 40ch; color: var(--ink-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--tomato); color: #fff; }
.btn-primary:hover { background: var(--tomato-ink); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ── Menu ───────────────────────────────────────────────────────────── */
.menu-group { margin-top: 2.5rem; }
.menu-group:first-of-type { margin-top: 0; }
.menu-group h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--tomato-ink);
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  column-gap: .5rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-name { font-weight: 600; }
.menu-dots { border-bottom: 2px dotted var(--line); transform: translateY(-.25rem); }
.menu-price { font-variant-numeric: tabular-nums; font-weight: 700; }
.menu-desc {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: .95rem;
  margin-top: .15rem;
}

/* ── Visit ──────────────────────────────────────────────────────────── */
.section-split {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 46rem) {
  .section-split { grid-template-columns: 1.2fr 1fr; }
}
.facts { margin: 0; display: grid; gap: .75rem; }
.facts > div {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--line);
  padding-bottom: .75rem;
}
@media (min-width: 30rem) {
  .facts > div { grid-template-columns: 12rem 1fr; }
}
.facts dt { font-weight: 700; }
.facts dd { margin: 0; color: var(--ink-soft); }

.trust-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  align-self: start;
}
.trust-panel h3 { font-size: 1.15rem; }
.trust-panel p { color: var(--ink-soft); font-size: .95rem; }
.trust-panel > div { margin-top: 1rem; }

/* ── Reviews wall host ──────────────────────────────────────────────── */
.reviews-host { margin-top: -0.5rem; }
.reviews-host > div:first-child { min-height: 8rem; }

/* ── Booking widget host ────────────────────────────────────────────── */
.book-host {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1rem, 4vw, 2rem);
  box-shadow: var(--shadow);
  min-height: 18rem;
}

/* ── Offer (stripped from the downloadable template) ────────────────── */
.section-offer h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
.offer-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.5rem;
}
@media (min-width: 52rem) {
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
}
.offer-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.offer-card-featured {
  border-color: var(--tomato);
  box-shadow: var(--shadow);
}
.offer-card h3 { font-size: 1.25rem; }
.offer-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 1rem;
}
.offer-price span { font-size: .85rem; font-weight: 500; color: var(--ink-soft); font-family: var(--font-body); }
.offer-card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: .95rem;
  flex: 1;
}
.offer-card li { margin: .4rem 0; }
.offer-card .btn { align-self: flex-start; }
.offer-foot { color: var(--ink-soft); font-size: .9rem; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-foot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem var(--pad);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .9rem;
}
.site-foot p { margin: .25rem 0; }
.foot-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.foot-credit { margin-top: 1rem; }
