/* ============================================
   BASE — reset & root variables
   ============================================ */
:root {
  --font-base: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Cormorant", var(--font-base);
  --primary: #ff6338;
  --beige: #f1efec;
  --navy: #0c2136;
  --black: #0a0a0a;
  --white: #ffffff;
  --gray: #888888;
  --border: rgba(10,10,10,0.12);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: top;
}

html, body {
  text-rendering: optimizeLegibility;
  height: auto;
}

li { list-style: none; }
a  { color: inherit; text-decoration: none; }
button { color: inherit; }

button,
textarea,
input {
  font-family: var(--font-base);
  letter-spacing: -0.05em;
  background: transparent;
}

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