:root {
  --maui-bg-start: #faf7f0;
  --maui-bg-end: #f0ead6;
  --maui-cream: #fdf8e5;
  --maui-ink: #2c2416;
  --maui-muted: #8b7355;
  --maui-soft: #a89484;
  --maui-yellow: #e8c547;
  --maui-nav: #f4d03f;
  --maui-coral: #c67b5c;
  --maui-line: #e5ddd5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--maui-ink);
  background: linear-gradient(135deg, var(--maui-bg-start), var(--maui-bg-end));
  font-family: Arial, Helvetica, sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.maui-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 64px;
  padding: 0 30px;
}

.maui-header a {
  color: var(--maui-muted);
  font-weight: 700;
}

.maui-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 410px));
  justify-content: center;
  gap: 34px;
  padding: 28px 24px 60px;
}

.phone-frame {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  border: 10px solid #211913;
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(44, 36, 22, 0.24);
}
