:root {
  --bg-top: #f9f4f0;
  --bg-bottom: #f4ece5;
  --text: #365349;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

.baking-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  text-align: center;
}

.logo {
  width: min(760px, 92vw);
  height: auto;
  display: block;
  border-radius: 18px;
}

h1 {
  margin: 0;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  letter-spacing: 0.02em;
  font-weight: 600;
}

.contact {
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
}

.contact a {
  color: inherit;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
