@import url("https://fonts.googleapis.com/css2?family=Aboreto&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --black: #070604;
  --charcoal: #12100c;
  --charcoal-2: #1b160f;
  --text: #fff8ec;
  --muted: #b7aa98;
  --gold: #d8a84f;
  --gold-light: #f2d38a;
  --gold-dark: #9b6827;
  --line: rgba(242, 211, 138, 0.2);
  --panel: rgba(255, 248, 236, 0.055);
  --font-display: "Aboreto", Georgia, "Times New Roman", serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: "Montserrat", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(216, 168, 79, 0.1), transparent 28rem),
    radial-gradient(circle at 80% 0%, rgba(155, 104, 39, 0.16), transparent 32rem),
    linear-gradient(rgba(7, 6, 4, 0.95), rgba(7, 6, 4, 0.96)),
    var(--black);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 5vw, 86px);
  background: rgba(7, 6, 4, 0.92);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(216, 168, 79, 0.55), 0 12px 28px rgba(0, 0, 0, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  color: #fff;
  border: 1px solid var(--line);
  background: transparent;
  padding: 9px 13px;
  font: inherit;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(62px, 8vw, 120px) clamp(18px, 6vw, 96px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.95), rgba(7, 6, 4, 0.66)),
    radial-gradient(circle at 70% 50%, rgba(216, 168, 79, 0.2), transparent 25rem),
    #0c0a07;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 680px;
}

.hero-plate {
  position: relative;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(242, 211, 138, 0.22), transparent 60%),
    url("../../Pizzas/Kyckling Pesto Special.png") center / cover no-repeat;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(242, 211, 138, 0.22);
}

.script-title,
.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.eyebrow {
  font-size: 2rem;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.8rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero p,
.page-hero p,
.section-head p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-size: 0.86rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.button.primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
}

.button:hover {
  border-color: var(--gold);
  color: #111;
  background: var(--gold);
}

.button.disabled {
  cursor: default;
  opacity: 0.72;
}

.button.disabled:hover {
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #080604;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-strip.restaurant-chooser {
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
}

.info-item {
  display: grid;
  gap: 4px;
  padding: 28px clamp(18px, 4vw, 70px);
  border-right: 1px solid var(--line);
}

.info-item:last-child {
  border-right: 0;
}

.info-item strong {
  color: #fff;
  font-size: 1.05rem;
}

.info-item span {
  color: var(--muted);
}

.restaurant-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 70px);
}

.restaurant-buttons .button {
  width: 100%;
}

.section {
  padding: clamp(62px, 8vw, 110px) clamp(18px, 6vw, 96px);
}

.section.dark {
  background:
    linear-gradient(rgba(7, 6, 4, 0.96), rgba(7, 6, 4, 0.96)),
    radial-gradient(circle at 10% 10%, rgba(216, 168, 79, 0.12), transparent 28rem);
}

.section.gold {
  color: #140f08;
  background:
    linear-gradient(135deg, rgba(242, 211, 138, 0.94), rgba(216, 168, 79, 0.96)),
    var(--gold);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head h2,
.menu-group h2 {
  margin: 0 0 13px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.section.gold .section-head h2,
.section.gold .section-head p,
.section.gold .eyebrow {
  color: #111;
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.welcome-image {
  min-height: 430px;
  background: url("../../Pizzas/Margherita Delux.png") center / cover no-repeat;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38), 0 0 0 1px var(--line);
}

.welcome-copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.welcome-copy p {
  color: var(--muted);
}

.services-grid,
.branch-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-card,
.branch-card,
.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.025)),
    var(--panel);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.section.gold .service-card {
  color: #fff;
  border-color: rgba(242, 211, 138, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.055), rgba(255, 248, 236, 0.015)),
    #070604;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.service-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 2rem;
}

.branch-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.branch-card h3,
.contact-card h3,
.service-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.section.gold .service-card h3 {
  color: #fff;
}

.section.gold .service-card p {
  color: rgba(255, 255, 255, 0.78);
}

.section.gold .service-icon {
  color: var(--gold-light);
  border-color: rgba(242, 211, 138, 0.72);
}

.muted,
.branch-card p,
.contact-card p,
.service-card p {
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.06), rgba(255, 248, 236, 0.025)),
    var(--charcoal);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-card > div {
  padding: 24px;
}

.menu-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.menu-card h3,
.menu-card p {
  margin: 0;
}

.menu-card h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.menu-card strong,
.price,
.badge {
  color: var(--gold);
}

.badge {
  display: inline-flex;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-group {
  margin-bottom: 58px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 42px;
}

.price-row {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 16px;
  align-items: center;
}

.price-row img {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  object-fit: cover;
}

.price-row h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
}

.price-row p {
  margin: 3px 0 0;
  color: var(--muted);
}

.page-hero {
  padding: clamp(76px, 9vw, 140px) clamp(18px, 6vw, 96px);
  text-align: center;
  background:
    linear-gradient(rgba(7, 6, 4, 0.68), rgba(7, 6, 4, 0.88)),
    url("../../Pizzas/Tryffel Lovers.png") center / cover no-repeat;
}

.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.sticky-order {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  padding: 70px clamp(18px, 6vw, 96px);
  color: var(--muted);
  background: #050403;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: #fff;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 980px) {
  .hero,
  .welcome-grid,
  .pricing-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-plate {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .menu-grid,
  .services-grid,
  .branch-grid,
  .contact-grid,
  .info-strip,
  .info-strip.restaurant-chooser,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .info-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .restaurant-buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 18px;
    background: #050505;
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: 0.04em;
  }

  .price-row {
    grid-template-columns: 62px 1fr;
  }

  .price-row .price {
    grid-column: 2;
  }

  .sticky-order {
    display: inline-flex;
  }
}
