:root {
  --clay: oklch(0.58 0.13 40);
  --clay-deep: oklch(0.42 0.12 38);
  --cream: oklch(0.96 0.025 85);
  --beige: oklch(0.91 0.035 80);
  --ink: oklch(0.22 0.02 50);
  --olive: oklch(0.52 0.08 130);
  --olive-deep: oklch(0.36 0.08 130);
  --shadow: 0 24px 70px oklch(0.16 0.04 45 / 0.32);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: var(--clay-deep);
  color: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.page-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 24px 18px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      oklch(0.16 0.04 45 / 0.34),
      oklch(0.24 0.08 40 / 0.72)
    ),
    url("/assets/hero-food.jpg") center / cover;
  transform: scale(1.02);
}

.ornament {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background-color: var(--clay-deep);
  background-image: url("/assets/ornament-strip.png");
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 32px;
}

.contacts {
  position: relative;
  width: min(100%, 430px);
  padding: 34px 18px 18px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--beige);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
  text-shadow: 0 2px 18px oklch(0.14 0.04 45 / 0.55);
}

h1 {
  margin: 14px 0 0;
  color: var(--cream);
  font-size: 56px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  text-shadow: 0 8px 38px oklch(0.12 0.04 45 / 0.58);
}

.subtitle {
  margin: 12px 0 0;
  color: var(--beige);
  font-size: 17px;
  font-weight: 700;
}

.links {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.link-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  min-height: 76px;
  align-items: center;
  gap: 14px;
  border: 1px solid oklch(0.98 0.02 85 / 0.22);
  border-radius: 8px;
  background: oklch(0.18 0.04 45 / 0.34);
  color: var(--cream);
  padding: 12px 14px;
  text-align: left;
  box-shadow: 0 14px 38px oklch(0.12 0.04 45 / 0.16);
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: oklch(0.98 0.02 85 / 0.44);
  background: oklch(0.18 0.04 45 / 0.48);
}

.link-card-primary {
  background: oklch(0.36 0.08 130 / 0.62);
  color: var(--cream);
  border-color: oklch(0.78 0.08 130 / 0.42);
}

.link-card-primary:hover {
  background: oklch(0.32 0.08 130 / 0.76);
}

.icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  background: transparent;
  color: var(--cream);
}

.link-card-primary .icon {
  background: transparent;
  color: var(--cream);
}

.icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.icon-menu {
  background: transparent;
  color: var(--cream);
}

.icon-instagram {
  background: transparent;
  color: var(--cream);
}

.icon-instagram svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-width: 1.75;
}

.icon-instagram circle:last-child {
  fill: currentColor;
  stroke: none;
}

.icon-whatsapp {
  background: transparent;
  color: var(--cream);
}

.icon-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  stroke: none;
}

.icon-maps {
  background: transparent;
  color: var(--cream);
}

.icon-maps svg {
  width: 31px;
  height: 31px;
  stroke: none;
}

.maps-blue {
  fill: currentColor;
}

.maps-green {
  fill: currentColor;
}

.maps-yellow {
  fill: currentColor;
}

.maps-red {
  fill: currentColor;
}

.maps-center {
  fill: var(--cream);
}

.link-label,
.link-value {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.link-label {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0.72;
}

.link-value {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
}

@media (max-width: 420px) {
  .page-shell {
    padding: 24px 12px;
  }

  .contacts {
    padding-left: 6px;
    padding-right: 6px;
  }

  h1 {
    font-size: 44px;
  }

  .link-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 11px 12px;
  }

  .icon {
    width: 46px;
    height: 46px;
  }

  .link-value {
    font-size: 16px;
  }
}
