:root {
  --background: #090807;
  --panel: #151210;
  --panel-soft: #211b17;
  --border: #3b2d24;
  --text: #fff8ee;
  --muted: #b9a999;
  --gold: #d6a84f;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -20%, rgba(214, 168, 79, 0.14), transparent 30rem),
    var(--background);
}

a {
  color: inherit;
}

.site-shell {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 24px 20px 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.hero {
  min-height: 560px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.35)),
    url("assets/default-hero-pizza.png");
  background-size: cover, 108% auto;
  background-position: center 34%;
  display: flex;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero-content {
  width: min(640px, 100%);
  padding: 56px;
}

.kicker {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 800;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6.7vw, 92px);
  line-height: 0.95;
}

.hero h1 {
  white-space: nowrap;
}

.lead {
  color: var(--text);
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.35;
  margin: 24px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--gold);
  color: #1a120b;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.section {
  padding: 56px 0 0;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 800;
  margin: 0 0 12px;
}

.section h2 {
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05;
  margin: 0 0 22px;
}

.section p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
  max-width: 880px;
  text-align: justify;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.card {
  min-height: 132px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(21, 18, 16, 0.92);
  padding: 22px;
}

.card strong {
  display: block;
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 10px;
}

.card span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}

.privacy-page {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(21, 18, 16, 0.94);
  padding: clamp(24px, 5vw, 54px);
}

.privacy-page h1 {
  font-size: clamp(38px, 6vw, 68px);
  margin-bottom: 24px;
}

.privacy-page p,
.privacy-page li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.privacy-page ul {
  padding-left: 22px;
}

.footer {
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding-top: 24px;
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-shell {
    padding: 16px 14px 40px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 520px;
    background-size: cover, auto 108%;
    background-position: center center;
  }

  .hero-content {
    padding: 34px 24px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .lead {
    font-size: 22px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .section p {
    font-size: 18px;
  }

  .privacy-page h1 {
    white-space: normal;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.05;
  }
}
