* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #0d0d0d;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background: #0d0d0d;
}

.page {
  width: 100%;
  min-height: 100vh;
  max-width: 480px;
  margin: 0 auto;
  background: #c93d4b;
  overflow: hidden;
  position: relative;
}

.hero {
  position: relative;
  min-height: 78vh;
  padding: 42px 24px 54px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(180deg, #c93d4b 0%, #b72d38 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.18) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.14) 25%, transparent 25%);
  background-size: 8px 8px;
}

.logo,
h1,
.divider,
h2,
p,
.facebook-button {
  position: relative;
  z-index: 1;
}

.logo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 5px solid #fff;
  box-shadow: 0 16px 30px rgba(0,0,0,0.28);
  margin-bottom: 22px;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 16vw, 78px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  text-shadow: 0 3px 0 rgba(0,0,0,0.12);
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px auto 28px;
  max-width: 300px;
  color: #f4d59e;
}

.divider span {
  height: 3px;
  flex: 1;
  background: #f4d59e;
  border-radius: 999px;
}

.divider strong {
  font-size: 24px;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 9vw, 46px);
  line-height: 1.03;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h2 strong {
  color: #f4d59e;
}

p {
  max-width: 360px;
  margin: 0 auto 30px;
  font-size: 19px;
  line-height: 1.45;
}

p strong {
  color: #f4d59e;
}

.facebook-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  min-height: 62px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #fff;
  color: #202020;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.facebook-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.food {
  position: absolute;
  z-index: 0;
  font-size: 54px;
  opacity: 0.18;
  filter: grayscale(1);
}

.food-one {
  top: 110px;
  left: -10px;
  transform: rotate(-20deg);
}

.food-two {
  top: 80px;
  right: 26px;
  transform: rotate(20deg);
}

.food-three {
  top: 245px;
  right: -8px;
  transform: rotate(-8deg);
}

.location {
  position: relative;
  text-align: center;
  padding: 42px 24px 46px;
  background: #f4ead8;
  color: #232323;
}

.location::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  height: 36px;
  background: #f4ead8;
  clip-path: polygon(0 45%, 8% 62%, 17% 38%, 28% 72%, 39% 36%, 50% 60%, 63% 34%, 75% 66%, 86% 42%, 100% 58%, 100% 100%, 0 100%);
}

.pin {
  font-size: 42px;
  margin-bottom: 12px;
}

address {
  font-style: normal;
  font-size: 24px;
  line-height: 1.35;
}

address strong {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 28px;
}

@media (min-width: 520px) {
  .page {
    min-height: auto;
    margin: 24px auto;
    border-radius: 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  }
}
