:root {
  --ink: #18110f;
  --muted: #74645c;
  --cream: #fff8ef;
  --paper: #fffdf8;
  --red: #b92722;
  --green: #2f7b4f;
  --green-deep: #1f5538;
  --gold: #e1a642;
  --line: rgba(24, 17, 15, 0.13);
  --shadow: 0 24px 70px rgba(55, 23, 10, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 10%, rgba(47, 123, 79, 0.16), transparent 22%),
    radial-gradient(circle at top left, rgba(185, 39, 34, 0.11), transparent 32%),
    linear-gradient(180deg, #fffaf2, #f5eadc 100%);
  font-family: "Segoe UI", Inter, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

button,
input,
select {
  font: inherit;
}

.page {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.demo-banner {
  margin: 0;
  padding: 9px 16px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.9);
  backdrop-filter: blur(15px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

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

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.brand strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a,
.nav-cta,
.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.nav-links a {
  padding: 8px 10px;
  color: var(--muted);
}

.nav-cta,
.btn-primary {
  border: 1px solid var(--red);
  color: #fff;
  background: var(--red);
}

.nav-cta {
  padding: 8px 18px;
  min-width: 132px;
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.btn {
  padding: 12px 18px;
  cursor: pointer;
}

.hero {
  padding: clamp(44px, 7vw, 92px) 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

h1 {
  max-width: 12.8ch;
  font-size: clamp(3.2rem, 5.45vw, 5.35rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2.15rem, 4.4vw, 4.6rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero-copy > p,
.section-copy p,
.section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.event-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 4px 0 0;
}

.hero-facts div,
.tour-card,
.menu-panel,
.event-form,
.route-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 16px 45px rgba(55, 23, 10, 0.08);
}

.hero-facts div:first-child,
.hero-facts div:nth-child(3) {
  border-color: rgba(47, 123, 79, 0.24);
  background: rgba(47, 123, 79, 0.06);
}

.hero-facts div {
  padding: 14px;
}

dt {
  margin-bottom: 5px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  width: 100%;
  height: 520px;
  border: 10px solid rgba(255, 253, 248, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.route-card {
  position: absolute;
  right: -8px;
  bottom: 0;
  width: min(330px, 86%);
  padding: 20px;
}

.route-card p,
.tour-head span,
.pizza-showcase span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-card strong {
  display: block;
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.08;
  font-weight: 500;
}

.route-card span,
.tour-card small,
.menu-note,
.event-preview {
  color: var(--muted);
}

.tour-section,
.menu-section,
.event-section {
  padding: 78px 0;
}

.tour-section {
  background:
    linear-gradient(115deg, rgba(47, 123, 79, 0.12), transparent 46%),
    rgba(255, 253, 248, 0.42);
}

.tour-grid,
.event-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.tour-options {
  display: grid;
  gap: 8px;
}

.tour-options span {
  width: fit-content;
  border: 1px solid rgba(47, 123, 79, 0.24);
  border-radius: var(--radius);
  padding: 9px 11px;
  color: var(--green-deep);
  background: rgba(47, 123, 79, 0.08);
  font-weight: 900;
}

.tour-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.tour-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.tour-head strong {
  font-size: 1.15rem;
}

.tour-card > p {
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1.1;
}

.tour-card ul,
.menu-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-card li,
.menu-panel li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.tour-card li span {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.pizza-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.pizza-showcase article {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(55, 23, 10, 0.1);
}

.pizza-showcase img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.pizza-showcase div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.pizza-showcase p {
  color: var(--muted);
}

.pizza-showcase strong {
  font-size: 1.2rem;
}

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

.menu-panel {
  padding: 22px;
}

.menu-panel h3 {
  margin-bottom: 16px;
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

.menu-panel li span {
  color: var(--muted);
}

.menu-note {
  margin-top: 16px;
  font-weight: 900;
}

.event-section {
  background:
    linear-gradient(135deg, rgba(47, 123, 79, 0.14), transparent 45%),
    #fffdf8;
  border-top: 1px solid var(--line);
}

.event-section .section-copy h2 {
  max-width: 10.5ch;
  font-size: clamp(2.75rem, 4.15vw, 4.55rem);
}

.keep-line {
  white-space: nowrap;
}

.event-benefits span {
  border: 1px solid rgba(47, 123, 79, 0.24);
  border-radius: var(--radius);
  padding: 9px 11px;
  color: var(--green);
  background: rgba(47, 123, 79, 0.07);
  font-weight: 900;
}

.event-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fffaf2;
}

.event-preview {
  min-height: 110px;
  border: 1px dashed rgba(47, 123, 79, 0.36);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(47, 123, 79, 0.05);
  white-space: pre-wrap;
}

.mail-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.mail-link[hidden] {
  display: none;
}

.site-footer {
  padding: 28px 0;
  color: #fff8ef;
  background: var(--ink);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-grid p:last-child {
  color: rgba(255, 248, 239, 0.72);
  text-align: right;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .tour-grid,
  .section-heading,
  .event-grid,
  .menu-columns,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .pizza-showcase {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-photo {
    height: 420px;
  }

  .route-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 22px, 1140px);
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-actions,
  .footer-grid {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-photo {
    height: 320px;
  }

  .tour-card li,
  .menu-panel li {
    align-items: flex-start;
  }

  .footer-grid p:last-child {
    text-align: left;
  }
}
