/* ==========================
   BEETFRUIT — BASE STYLES
   Variables, reset, typography
   ========================== */

:root {
  --bg: #ffffff;
  --text: #101828;
  --muted: #475467;
  --subtle: #667085;

  --border: #EAECF0;
  --card: #F9FAFB;

  --accent: #C2185B;         /* Beetfruit berry */
  --accent-hover: #A0154B;
  --accent-soft: #FFE4EF;

  --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);

  --radius: 18px;
  --radius-sm: 14px;

  --max: 1120px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
          Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

/* ----- Reset / Global ----- */

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  padding-top: 72px
}

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

a:hover {
  text-decoration: underline;
}

/* ----- Utility Container ----- */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- Typography Helpers ----- */

h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 14px 0 12px;
}

.mini {
  color: var(--subtle);
  font-size: 13px;
  margin-top: 14px;
}
