:root {
  --color-bg-deep: #0a1f14;
  --color-bg: #0f2a1a;
  --color-bg-light: #143320;
  --color-bg-card: #163822;
  --color-bg-card-hover: #1a4428;
  --color-forest: #1b4332;
  --color-forest-light: #2d5a45;
  --color-gold: #c9a227;
  --color-gold-light: #e1bf52;
  --color-text: #d4e4d8;
  --color-text-muted: #7a9a84;
  --color-text-heading: #e8f5ec;
  --color-border: rgba(201, 162, 39, 0.12);
  --color-border-gold: rgba(201, 162, 39, 0.3);
  --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 18px 40px rgba(201, 162, 39, 0.12);
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: min(1120px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, var(--color-bg-deep) 0%, var(--color-bg) 15%, var(--color-bg) 85%, var(--color-bg-deep) 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  line-height: 1.7;
}

h1,
h2,
h3,
strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-text-heading);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-tag::before,
.section-tag::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

/* ── Topbar ── */

.topbar {
  background: var(--color-bg-deep);
  color: #d4e4d8;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.topbar__content,
.site-header__content,
.site-footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__content {
  min-height: 3rem;
}

.topbar__text {
  font-size: 0.92rem;
}

.lang-switch {
  display: inline-flex;
  padding: 0.25rem;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
}

.lang-switch__button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-switch__button:hover,
.lang-switch__button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.lang-switch__button.is-active {
  background: var(--color-gold);
  color: var(--color-bg-deep);
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--color-bg-deep);
  border-bottom: 1px solid var(--color-border);
}

.site-header__content {
  min-height: 4.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--color-gold-light);
  background: linear-gradient(145deg, var(--color-forest), #0a1f14);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: var(--shadow-gold);
  font-size: 1.15rem;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__text strong {
  font-size: 1.35rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--color-text-heading);
}

.brand__text small {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0.55rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg-card);
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav a {
  position: relative;
  font-weight: 600;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--color-gold);
  transition: transform 0.2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

/* ── Hero ── */

.hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5.5rem;
  background:
    linear-gradient(90deg, rgba(201, 162, 39, 0.05) 0 1px, transparent 1px 48px),
    linear-gradient(160deg, var(--color-forest) 0%, var(--color-bg-deep) 100%);
  color: var(--color-text);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.hero::before {
  top: -5rem;
  right: -4rem;
  width: 18rem;
  height: 18rem;
  background: rgba(201, 162, 39, 0.12);
}

.hero::after {
  left: -3rem;
  bottom: -6rem;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.03);
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero__copy h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--color-text-heading);
}

.hero__description {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: rgba(212, 228, 216, 0.82);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button--primary {
  color: var(--color-bg-deep);
  background: linear-gradient(145deg, var(--color-gold-light), var(--color-gold));
  box-shadow: var(--shadow-gold);
}

.button--secondary {
  border-color: rgba(212, 228, 216, 0.3);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
}

.button--full {
  width: 100%;
}

.hero__badge {
  display: flex;
  justify-content: center;
}

.hero__badge-inner {
  display: grid;
  place-items: center;
  width: min(22rem, 75vw);
  aspect-ratio: 1;
  padding: 2rem;
  border: 2px solid rgba(201, 162, 39, 0.45);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(90deg, rgba(201, 162, 39, 0.06) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.hero__badge-top {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--color-gold-light);
}

.hero__badge-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero__badge-bottom {
  color: rgba(212, 228, 216, 0.75);
  font-size: 0.92rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ── Story ── */

.story {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 50%, var(--color-bg) 100%);
}

.story__grid,
.visit__grid,
.events__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.story__grid h2,
.visit__grid h2,
.events__content h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.story__grid p + p,
.events__content p + p,
.visit__grid p + p {
  margin-top: 1rem;
}

.story__cards {
  display: grid;
  gap: 1rem;
}

.info-card,
.menu-card,
.event-card,
.visit-card,
.pizza-card {
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.info-card:hover,
.info-card:focus-within,
.menu-card:hover,
.menu-card:focus-within,
.event-card:hover,
.event-card:focus-within,
.pizza-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  border-color: var(--color-border-gold);
}

.info-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
}

.info-card h3,
.menu-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.info-card--angled {
  clip-path: polygon(0 0, 94% 0, 100% 14%, 100% 100%, 0 100%);
}

.info-card--highlight {
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.1), var(--color-bg-card));
}

/* ── Pizzas ── */

.pizzas {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-deep) 50%, var(--color-bg) 100%);
}

.pizzas__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pizza-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.pizza-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  border-radius: 0 2px 2px 0;
}

.pizza-card--featured {
  border-color: var(--color-border-gold);
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.5), var(--color-bg-card));
}

.pizza-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pizza-card__body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}

.pizza-card__body p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.pizza-card__price {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.1);
  color: var(--color-gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  width: fit-content;
}

.pizza-card__badge {
  display: inline-flex;
  margin-bottom: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.14);
  color: var(--color-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.pizzas__note {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-border-gold);
  background: rgba(201, 162, 39, 0.05);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ── Specialties ── */

.specialties {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 50%, var(--color-bg) 100%);
}

.specialties__grid,
.events__list {
  display: grid;
  gap: 1.25rem;
}

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

.menu-card {
  position: relative;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0.3rem;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.menu-card__label {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.1);
  color: var(--color-gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card--featured {
  transform: translateY(-0.45rem);
  background: linear-gradient(180deg, rgba(27, 67, 50, 0.45), var(--color-bg-card));
  border-color: var(--color-border-gold);
}

.menu-card--featured .menu-card__label {
  background: rgba(201, 162, 39, 0.18);
}

/* ── Events ── */

.events {
  background:
    linear-gradient(90deg, rgba(201, 162, 39, 0.05) 0 1px, transparent 1px 44px),
    linear-gradient(160deg, var(--color-forest) 0%, var(--color-bg-deep) 100%);
  color: var(--color-text);
}

.events h2,
.events .section-tag,
.events strong,
.events .event-card span {
  color: var(--color-text-heading);
}

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

.event-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.event-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-gold-light);
}

/* ── Visit ── */

.visit {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-deep) 100%);
}

.visit-card {
  padding: 1.8rem;
  border-radius: 1.75rem;
  background: var(--color-bg-card);
}

.visit-card__row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.visit-card__row:first-child {
  padding-top: 0;
}

.visit-card__row:last-of-type {
  margin-bottom: 1.5rem;
}

.visit-card__row span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ── Footer ── */

.site-footer {
  padding: 2rem 0 2.5rem;
  background: linear-gradient(180deg, var(--color-bg-deep), #060f0a);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

.site-footer strong {
  color: var(--color-gold-light);
}

.site-footer__content {
  align-items: flex-start;
}

.site-footer__copy {
  text-align: right;
}

/* ── Responsive ── */

@media (max-width: 920px) {
  .site-header__content {
    position: relative;
    justify-content: space-between;
  }

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

  .nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.65rem;
    border: 1px solid var(--color-border);
    border-radius: 1.2rem;
    background: var(--color-bg-card);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
  }

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

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
    text-align: center;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(255, 255, 255, 0.04);
  }

  .hero__content,
  .story__grid,
  .visit__grid,
  .events__content,
  .specialties__grid,
  .events__list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero__copy,
  .hero__badge,
  .section-heading,
  .events__content,
  .visit__grid {
    text-align: center;
  }

  .hero__actions,
  .section-tag,
  .site-footer__content {
    justify-content: center;
  }

  .hero__copy h1,
  .hero__description,
  .section-heading,
  .events__content > div,
  .visit__grid > div {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer__copy {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4rem 0;
  }

  .topbar__content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    min-height: 2.5rem;
  }

  .topbar__text {
    font-size: 0.8rem;
  }

  .site-header__content {
    min-height: 3.5rem;
  }

  .brand__mark {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 0.95rem;
  }

  .brand__text strong {
    font-size: 1.15rem;
  }

  .brand__text small {
    font-size: 0.68rem;
  }

  .nav-toggle {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.45rem;
  }

  .hero__badge-inner {
    width: min(18rem, 78vw);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button--full {
    width: 100%;
  }

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

  .site-footer__content {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__copy {
    text-align: center;
  }
}
