/*
  색상 팔레트: 여름 쿨톤(더스티 틸) + 가을 웜톤(테라코타) 조합.
  팔레트를 바꾸고 싶으면 이 파일의 값만 수정하면 사이트 전체에 반영됩니다.
*/
:root {
  /* base */
  --bg: #f7f4ee;
  --bg-alt: #efeae2;
  --bg-card: #fffdf9;
  --ink: #2b2e33;
  --ink-soft: #5a5f66;
  --line: #d8d2c4;

  /* summer cool */
  --cool: #5c7a82;
  --cool-deep: #3e5c63;
  --cool-tint: #e6edee;

  /* autumn warm */
  --warm: #b97452;
  --warm-soft: #d9a066;
  --warm-tint: #f4e6da;

  --white: #ffffff;
  --shadow: 0 12px 32px rgba(43, 46, 51, 0.08);
  --shadow-lg: 0 20px 48px rgba(43, 46, 51, 0.14);

  /* typography */
  --font-serif-kr: "Noto Serif KR", serif;
  --font-serif-en: "Cormorant Garamond", serif;
  --font-sans: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;

  /* rhythm */
  --section-pad-y: clamp(64px, 12vw, 120px);
  --content-max: 480px;
  --radius: 18px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
